安装python包到虚拟环境
首先需要阅读《创建Python虚拟环境——下》
//www.greatytc.com/p/7df2383ad461
创建虚拟环境
1、 打开虚拟环境
workon venv(自己创建的虚拟环境名称)
2、 在这里使用pip安装python包
直接安装
pip install 包名
使用国内镜像安装
python包国内镜像:
清华:https://pypi.tuna.tsinghua.edu.cn/simple
阿里云:http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
华中理工大学:http://pypi.hustunique.com/
山东理工大学:http://pypi.sdutlinux.org/
豆瓣:http://pypi.douban.com/simple/
使用
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple 包名
如果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
完毕