码迷,mamicode.com
首页 > 编程语言 > 详细

建立 Python 虚拟环境

时间:2018-12-05 18:40:00      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:translate   install   https   虚拟环境   无法   建立   命令   rap   ken   

1.1 安装依赖包

$ yum -y install wget gcc epel-release git

 

1.2 安装 Python3.6和pip

$ yum -y install python36 python36-devel
$ curl https://bootstrap.pypa.io/get-pip.py |python3.6

 

1.3 建立 Python 虚拟环境

因为 CentOS 6/7 自带的是 Python2,而 Yum 等工具依赖原来的 Python,为了不扰乱原来的环境我们来使用 Python 虚拟环境

$ cd /opt
$ python3.6 -m venv py3
$ source /opt/py3/bin/activate

 



# 看到下面的提示符代表成功,以后运行 Jumpserver 都要先运行以上 source 命令,以下所有命令均在该虚拟环境中运行
(py3) [root@localhost py3]

 

1.4 自动载入 Python 虚拟环境配置

此项仅为懒癌晚期的人员使用,防止运行 Jumpserver 时忘记载入 Python 虚拟环境导致程序无法运行。使用autoenv

$ cd /opt
$ git clone https://github.com/kennethreitz/autoenv.git
$ echo source /opt/autoenv/activate.sh >> ~/.bashrc
$ source ~/.bashrc

 

 

建立 Python 虚拟环境

标签:translate   install   https   虚拟环境   无法   建立   命令   rap   ken   

原文地址:https://www.cnblogs.com/jiangwenhui/p/10072324.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!