当前位置 主页 > 服务器问题 > Linux/apache问题 >

    pyenv虚拟环境管理python多版本和软件库的方法

    栏目:Linux/apache问题 时间:2019-12-28 09:40

    可能大家在日常工作中会遇到这么个问题,现在基本的linux系统都是自带老版本的python2.7.x版本,我又不想用老版本,但直接升级可能会出问题,或是依赖老版本的程序就运行不了,有没办法能安装3.x新版本的?

    答案是有的,请使用pyenv,可以支持管理多个python版本,任意使用。

    其实官方于2019年底将不再提供支持了,截至倒计时还有6天:https://pythonclock.org/

    那有人可能会问,那在一个系统下,不同的库依赖不同的python版本,就比如说python2.x版本需要django1.0版本,python3.x版本需要django2.0版本,那这样系统只能装一个django版本,这又怎么解决呢?

    答案是有的,pyenv自带的插件pyenv-virtualenv,创建两个虚拟环境,互相独立,各不影响。

    实验环境:

    linux系统:CentOS 7 x64

    pyenv常用命令:

    [python@localhost ~]$ pyenv install -l //查看可用的安装版本
    [python@localhost ~]$ pyenv install 3.6.9 //在线安装python3.6.9版本
    [python@localhost ~]$ pyenv virtualenv 3.6.9 py3 //创建虚拟环境,3.6.9为python版本,py3为别名
    [python@localhost test]$ pyenv local 3.6.9 //进入目录,设置或显示本地python版本(本目录有效)
    [python@localhost test]$ pyenv global system //设置或显示全局python版本
    [python@localhost test]$ pyenv version //显示当前python版本
    [python@localhost test]$ pyenv versions //显示可用的所有python版本
    [python@localhost test]$ pyenv update //更新pyenv
    [python@localhost ~]$ pyenv virtualenvs //查看所有虚拟环境
    [python@localhost ~]$ rm -fr ~/.pyenv //卸载pyenv
    [python@localhost ~]$ pyenv virtualenv-delete py3 //删除虚拟环境
    

    创建用户名及密码:
    说明:不要用root账户,养成习惯

    [root@localhost ~]$ useradd python
    [root@localhost ~]$ su - python
    [python@localhost ~]$ echo python | passwd python --stdin
    

    安装依赖组件:

    [python@localhost ~]$ yum install gcc make patch gdbm-devel openssl-devel sqlite-devel readline-devel
    zlib-devel bzip2-devel git curl
    

    安装pyenv:

    #方法1:在线安装
    [python@localhost ~]$ curl -L https://github.com/pyenv/pyenv-installer/raw/master/bin/pyenv-installer | bash
    
    #方法2:为避免受制墙限制而无法在线安装,复制如下链接的shell脚本到本地pyenv.sh:
    https://github.com/pyenv/pyenv-installer/blob/master/bin/pyenv-installer
    
    [python@localhost ~]$ touch pyenv.sh //新建文件,把上面的shell代码贴进来,保存
    [python@localhost ~]$ bash pyenv.sh
    
    

    安装完成后,按照提示,设置系统环境变量,在 '.bashrc' 增加如下代码:

    [python@localhost ~]$ vim .bashrc 
    
    #最下面,新增如下脚本
    export PATH="/home/python/.pyenv/bin:$PATH" 
    eval "$(pyenv init -)"
    eval "$(pyenv virtualenv-init -)"
    
    

    重启shell,使路径更改生效:

    [python@localhost ~]$ exec $SHELL
    

    提前在官方下载python安装包并通过winSCP上传到centos目录下:

    Python-3.6.9.tar.xz Python-3.8.0.tar.xz
    #在.pyenv目录下创建cache目录,已通过winSCP上传好
    [python@localhost ~]$ cd .pyenv
    [python@localhost .pyenv]$ mkdir cache
    [python@localhost cache]$ ll
    总用量 34224
    -rw-rw-r--. 1 python python 17212164 12月 15 01:56 Python-3.6.9.tar.xz
    -rw-rw-r--. 1 python python 17829824 12月 15 01:57 Python-3.8.0.tar.xz