PIP的一些问题

pip install tensorflow  -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
安装TensorFlow全家桶

pip可以指定安装目录
pip install --target='dir' 'package-name' 


跑别人的代码一定要跟随包的版本,不跟随版本根本玩不了。
keras和TensorFlow有一定的版本对应,不是所有版本的keras都可以对应所有版本的TensorFlow

查看已安装的软件:pip list 
列出过期的库:pip list --outdataed


一些国内的pip源,如下:

清华: https://pypi.tuna.tsinghua.edu.cn/simple
豆瓣: http://pypi.douban.com/simple/
阿里: http://mirrors.aliyun.com/pypi/simple/

直接用镜像下载
pip install xxx(包名) -i https://pypi.tuna.tsinghua.edu.cn/simple/ --trusted-host pypi.tuna.tsinghua.edu.cn

-i:后面是镜像源地址
--trusted-host:后面指的host,例如清华:https://pypi.tuna.tsinghua.edu.cn/simple/
host就是指http://和/之间的部分:pypi.tuna.tsinghua.edu.cn/simple
 

你可能感兴趣的:(python,tensorflow)