一、因为pip安装速度太慢,设置镜像源
pip3 config list
或则
pip config list
这里根据你设定的命令名称查看,有时候pip说没有命令,有时候说pip3没有命令,如果两个都报没有此命令,那就得看看你python是不是没安装好。
一般是会显示你的配置信息,如果没有,那可能就还没设置,我这下面是设置阿里云镜像命令。
pip config set global.index-url http://mirrors.aliyun.com/pypi/simple/
pip config set global.trusted-host mirrors.aliyun.com
如果遇到下面的错误
ERROR: Could not install packages due to an OSError: [WinError 5] 拒绝访问。: 'C:\\Users\\Administrator\\AppData\\Local\\Programs\\Python\\Python39\\~cripts\\pip.exe'
Consider using the `--user` option or check the permissions.
可以试试下面的命令,这样也可以更新pip
pip install -i http://pypi.douban.com/simple/ pip -U --trusted-host pypi.douban.com --user
标签:遇到,--,config,pypi,命令,使用,pip,com From: https://www.cnblogs.com/nobody-/p/17318416.html