首先需要阅读《创建 Python 虚拟环境——下》
《创建 Python 虚拟环境——下》
创建虚拟环境
1、打开虚拟环境
workon venv(自己创建的虚拟环境名称)
2、在这里使用 pip 安装 python 包
直接安装
pip install 包名
使用国内镜像安装
python 包国内镜像:
清华:https://pypi.tuna.tsinghua.ed…
阿里云:http://mirrors.aliyun.com/pyp…
中国科技大学 https://pypi.mirrors.ustc.edu…
华中理工大学:http://pypi.hustunique.com/
山东理工大学:http://pypi.sdutlinux.org/
豆瓣:http://pypi.douban.com/simple/
使用演示
pip install -i https://pypi.tuna.tsinghua.ed… 包名
如果 pip 安装出错时可以选择离线安装
python 离线包:http://www.lfd.uci.edu/~gohlke/pythonlibs/#lxml
打开离线包网站
Ctrl+f 在浏览器的搜索框输入要安装的包名,找到他下载他
安装 pip install 下载的离线包位置
使用演示
pip install D:chrome 下载 tensorflow-1.9.0-cp36-cp36m-win_amd64.whl
完毕