Open jzztf opened 6 years ago
$ pip3 install pipenv
$ cd project
project $ pipenv install [package-name] [packages,]
$ pipenv graph
# 查看当前环境
$ pipenv shell
# 生成虚拟shell, 类似于virtualenv中使用"source ./~/activate"
# exit退出
$ pipenv run python xx.py
# 使用虚拟环境运行Python程序
$ pipenv --rm
# 删除虚拟环境
$ pipenv -- help
# 更多用法
export PIPENV_VENV_IN_PROJECT=1
echo "export PIPENV_VENV_IN_PROJECT=1" >> ~/.bashrc
links:
pip install autoenv
echo "pipenv shell" > /project/path/.env
links:
$ cd project
$ pipenv install
$ pipenv shell
$ pip install ipykernel
$ python -m ipykernel install --user --name="your kernel name"
# the new kernel will be in your jupyter notebook
links:
配置方法
在文件
~/.pip/pip.conf
中添加或修改:
[global]
index-url = https://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com
links:
python 版本管理工具 virtualenv
安装
pip install virtualenv
使用
常用参数
--no-sites-packages
不依赖系统包--python=python3
默认使用python3windows下使用
powershell
没有用, 需要使用CMD
调用cmd
切换目录,查看: #32 windows cmdmyproject.env\Scripts\activate
激活deactivate
关闭