Script file ‘D:\Anaconda3\envs\pytorch\Scripts\pip-script.py‘ is not present 解决方法

Script file ‘D:\Anaconda3\envs\pytorch\Scripts\pip-script.py’ is not present 解决方法和添加清华镜像源

错误

在cmd中想使用pip install pip -U命令把pip升级到最新的,出现了上面的错误。

解决方法

我的的pytorch是用anaconda安装的,里面创建有虚拟环境pytorch,首先进入该pytorch环境中的Scripts中来,接着运行easy_install pip命令。如图所示:
Script file ‘D:\Anaconda3\envs\pytorch\Scripts\pip-script.py‘ is not present 解决方法_第1张图片
接着把pip升级到最新版本,执行这个命令:pip install pip -U
在这里插入图片描述
这样就完成了!

然后我又添加了个pip清华的镜像源,执行下面这个命令:
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

这样就把pip的清华源添加进来了,以后使用pip命令安装东西就变得比较快了。

参考:
https://www.cnblogs.com/L521Z/p/11503224.html
https://blog.csdn.net/wls666/article/details/103236219

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