一 报错类型
二 原因
可能我们使用pip install --upgrade pip或者conda安装一下包时因为网络原因导致只是卸载旧版本而未安装。
三 解决策略
3.1 Anaconda
切换到你的anaconda安装目录并进入Scripts文件夹内(D:\Apps\anaconda3\Scripts)
运行以下代码:
conda install pip
如果出现下图:
原因是之前我更改多默认源了,我们可以改其他仓库源,这里我恢复官方默认源,
conda config --remove-key channels
然后再执行上面代码即可
当然你可以切换到其他源,如:
1(清华源)
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
2(中科大源)
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/conda-forge/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/msys2/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/bioconda/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/menpo/
3.2 Python:
如果有的同学只是装Python的话同样切换到你的Python安装目录的Scripts下
然后执行以下操作
easy_install pip
- easy_install 打包和发布 Python 包
- pip是包管理指令
四 测试是否成功
运行查看库指令:文章来源:https://www.toymoban.com/news/detail-612593.html
pip list
代表我们成功了!!!文章来源地址https://www.toymoban.com/news/detail-612593.html
到了这里,关于Script file ‘F:.....\pip-script.py‘ is not present 原因及解决办法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!