python相关库的安装经验

1.安装方法:pip install (安装的东西)
如(安装numpy):pip install numpy
安装某个版本:pip install numpy1.12.1
2.卸载:pip uninstall (安装的东西)
如:pip uninstall numpy
3.安装速度太慢:国内镜像安装(清华镜像)
如(pandas安装):
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pandas
如(tensorflow+gpu+版本安装):
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple/ tensorflow-gpu
1.13.1(gpu后面有两个等号)
4.错误
4.1(Could not install packages due to an EnvironmentError: [WinError 5] 拒绝访问):pip install–user 安装的东西
如:pip install–user tensorflow-gpu1.13.1
4.2 spyder 中numpy 导入使用有问题:重新安装pandas成功的话,numpy就能成功使用(pandas安装出问题再解决相关的)
5.更新版本
更新到某个版本:
pip install --upgrade numpy
1.12.1(numpy 后面有两个等号)
更新到最新:
pip install --upgrade numpy

你可能感兴趣的:(python相关安装经验,python)