[root@reportweb src]# cd Python-3.6.2[root@reportweb Python-3.6.2]# mkdir /usr/local/python3.6[root@reportweb Python-3.6.2]# ./configure --prefix=/usr/local/python3.6[root@reportweb Python-3.6.2]# make[root@reportweb Python-3.6.2]# make install 第5步:建立软链 [root@reportweb Pyt...
[root@reportweb Python-3.6.2] # make install 1. 2. 3. 4. 5. 第5步:建立软链 [root@reportweb Python-3.6.2] # ln -s /usr/local/python3.6/bin/python3.6 /usr/bin/python3 1. 第6步:查询python版本 [root@reportweb]# python3 -V Python 3.6.6 1. 2. [root@reportweb]# python -V...
python项目部署linux服务器 同步更新在个人网站:http://www.wangpengcufe.com/machinelearning/python-python2/ 一、背景 用Python写了个脚本,需要部署到Linux环境的服务器上,由于服务器linux系统(centos,redhat等)自带的是python2,现在的python萌新都是从python3开始学习,所以需要给服务器配置一个python3环境,一番摸索...