安装或者更新pip

背景

python pip报错 Cannot open Scripts\pip-script.py

解决方法

conda环境安装pip和更新的方法

# 使用国内镜像,会更快
conda install --channel https://mirrors.ustc.edu.cn/anaconda/pkgs/main/ pip

非conda环境,若无pip环境,则新安装

# 下载pip安装脚本
https://bootstrap.pypa.io/get-pip.py
# 安装pip
python get-pip.py

非conda环境,有Pip或esay_install环境,则

# easy_install 环境
easy_install pip

测试

pip -V

转自:https://blog.csdn.net/myhes/article/details/106582262

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