Python虚拟环境virtualenv
Ussge
virtualenv 是一个创建隔绝的Python环境的工具。virtualenv创建一个包含所有必要的可执行文件的文件夹,用来使用Python工程所需的包。 安装 pip install virtualenv 基本使用 为一个工程创建一个虚拟环境: $ cd my_project_dir $ virtualenv venv #venv为虚拟环境目录名,目录名自定义 virtualenv venv 将会在当前的目录中创建一个文件夹,包含了Python可执行文件,以及 pip 库的一份拷贝,这样就能安装其他包了。虚拟环境的名字(此例中是 venv )可以是任意的;若省略名字将会把文件均放在当前目录。 在任何你运行命令的目录中,这会创建Python的拷贝,并将之放在叫做 venv 的文件中。 你可以选择使用一个Python解释器: ## -p参数指定Python解释器程序路径 virtualenv -p /usr/bin/python3.6 venv 这将会使用 /usr/bin/python3.6 中的Python解释器。 要开始使用虚拟环境,其需要被激活: #这个可能有时不能复制 哈哈 source venv/bin/activate
ERROR: More than one .egg-info directory found in /tmp/pip-pip-egg-info-4dzv2e49
WARNING: You are using pip version 21.1.2; however, version 21.1.3 is available.
You should consider upgrading via the '/home/evan/saltops_v2/venv/bin/python -m pip install --upgrade pip' command.
(venv) evan@myxps:~/saltops_v2$
把你的源码目录 mv一下到其它地方就行了 哈哈
2022 eg
cat projectinit ~/data/django$ cd djproject2022 virtualenv -p /usr/bin/python3 venv source venv/bin/activate pip install django==3.2 Successfully installed asgiref-3.5.1 django-3.2 pytz-2022.1 sqlparse-0.4.2 WARNING: You are using pip version 21.1.3; however, version 22.1 is available. You should consider upgrading via the '/home/evan/data/django/djproject2022/venv/bin/python -m pip install --upgrade pip' command. (ven
see also
https://docs.python.org/zh-cn/3/tutorial/venv.html
https://www.liaoxuefeng.com/wiki/1016959663602400/1019273143120480