在用pip安装库时,出现No module named pip
解决步骤:
- 在安装目录下输入
python -m ensurepip
,我的是在D盘
D:\Python>python -m ensurepip
- 然后更新pip
D:\Python>python -m pip install --upgrade pip
- 仍然会报错,如下
Could not install packages due to an EnvironmentError: [WinError 5] 拒绝访问。: ‘d:\python\scripts\pip.exe’
Consider using the--user
option or check the permissions.
- 重新输入
python -m ensurepip
,因为上面步骤虽然更新失败了,但是已经把旧版本pip卸载了
D:\Python>python -m ensurepip
- 然后在install后面加
--user
,如
D:\Python>python -m pip install --user --upgrade pip
- 成功解决。