centos6.5下python3安装、python3虚拟环境创建venv

在安装完centos6.5后,通过命令行键入python时,默认为python2.6.6版本,系统并没有安装python3版本。又想学习python3,因此需要在centos6.5下安装python3版本。

[root@localhost bin]# python
Python 2.6.6 (r266:84292, Nov 22 2013, 12:16:22) 
[GCC 4.4.7 20120313 (Red Hat 4.4.7-4)] on linux2
Type "help", "copyright", "credits" or "license" for more information.

《python3安装》
1、下载python3的安装包:
(1)如果能够联网,则直接:

[root@localhost 3pyex]# wget -P /home/  https://www.python.org/ftp/python/3.7.1/Python-3.7.1.tgz

其中,我这里安装的版本为python-3.7.1,如果要安装其它版本,则打开网站https://www.python.org/ftp/python/,在该python目录下会看到整个python版本目录,将上述/3.7.1/Python-3.7.1.tgz替换成自己需要的版本即可。
(2)如果不能联网,则将上述网站上需要安装的版本下载下来,放到centos6.5的某个文件夹下即可。
2、安装python3:
假定下载的Python-3.7.1.tgz在目录/home/下:

[root@localhost home]# cd /home/
[root@localhost home]# tar -zxvf Python-3.7.1.tgz
[root@localhost home]# cd Python-3.7.1
[root@localhost home]# ./configure
[root@localhost home]# make
[root@localhost home]# make install

安装完毕,再命令行下键入python3即可打开python3.7.1的python版本:

[root@localhost Python-3.7.1]# python3
Python 3.7.1 (default, Jun 17 2019, 02:27:31) 
[GCC 4.4.7 20120313 (Red Hat 4.4.7-4)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> 

你可能感兴趣的:(Python)