Python virtual environment 的使用

本文介绍了如何使用virtualenv及其增强工具virtualenvwrapper来管理Python项目的不同依赖。通过创建独立的虚拟环境,可以避免不同项目间依赖冲突的问题。文章详细说明了安装、激活、切换及删除虚拟环境的具体步骤。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

有时候 做Python 项目时 会有一个问题 不同的 project 需要依赖不同的lib 这个时候用 virtual environment 可以作为解决这个问题的一个方法。

这里只简单介绍具体的使用方法 至于实现原理这里不做介绍:

 

一  常规的使用方法

a. installation

1. sudo apt-get install python-virtualenv

2. sudo easy_install virtualenv

3. pip install virtualenv

 

b. How to activeate/deactivate virtualenv

virtualenv venv   //创建virtualenv venv

source venv/bin/activate   //activate venv

(venv) $  //activate 后进入得视图

deactivate    //deactivate virual env

 

二  virtualenvwrapper 的使用方法

sudo pip install virtualenvwrapper  //install virtual env tools

echo "source /usr/local/bin/virtualenvwrapper.sh" >> ~/.bashrc 

workon test     // substitute test with the desired environment name if needed 

deactivate    //deactivate virual env

 

mkvirtualenv test: This will create an environment named test and
activate it automatically.
mktmpenv test: This will create a temporary environment named test and
activate it automatically. This environment will be destroyed once you
invoke the deactivate script.
workon app: This will switch you to the app environment (already created).
workon (alias lsvirtualenv): When you don't specify an environment,
this will print all the existing environments that are available.
deactivate: This will disable the currently active environment, if any.
rmvirtualenv app: This will completely remove the app environment

 

转载于:https://www.cnblogs.com/abacuspix/p/6495471.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值