求助,python新手如何下载pip
我用的python是 3.8 32-bit的版本,根据教程说这个版本应该已经自带pip。但不管我是在cmd还是在idle上打“pip”都没有反应。1. 在idle上打pip会报错:
“Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
pip
NameError: name 'pip' is not defined”
2. 在cmd上打pip也会报错,代码如下:
C:\Users\admin(我的电脑用户名)>pip
然后报错:
“'pip' 不是内部或外部命令,也不是可运行的程序
或批处理文件。”
3. 我也去github里下载了easygui的文件,但是只有当我运行文件名为“setup.py”时我才可以“import easygui”,其它时间都不可以。
真不知道该怎么办了,就想装一个easygui去接着学python。麻烦各位大神看看有没有什么办法。
谢谢各位的解答,尽管我现在由于SSL Error,pip还是不能用,但从大家的叙述中知道了很多东西,以及我自己找到了如何不用pip安装easygui的方法,现在贴出来,如果有人跟我一样怎么都用不了pip的话,可以采取该方法:
1. 下载module安装包
2. 解压缩
3. 将解压缩后的所有内容复制黏贴到C:\\Users\\Admin下
4. 打开cmd
5. 输入python setup.py install
这个方法受到这个帖子(https://stackoverflow.com/questions/13270877/how-to-manually-install-a-pypi-module-without-pip-easy-install)的启发,如有需要请自己查询。
再次感谢各位的帮助! 重装python后我也出现了这个问题
找到Python38文件夹(在你的安装目录下),进入Scripts,复制pip.exe或pip3.exe,粘贴到cmd默认目录下 还要配置环境变量
参考这篇https://blog.csdn.net/songlh1234/article/details/82882386?ops_request_misc=%257B%2522request%255Fid%2522%253A%2522162748366116780265496081%2522%252C%2522scm%2522%253A%252220140713.130102334..%2522%257D&request_id=162748366116780265496081&biz_id=0&utm_medium=distribute.pc_search_result.none-task-blog-2~all~sobaiduend~default-1-82882386.first_rank_v2_pc_rank_v29&utm_term=python%E7%9A%84pip%E7%94%A8%E4%B8%8D%E4%BA%86&spm=1018.2226.3001.4187 青出于蓝 发表于 2021-7-28 22:21
重装python后我也出现了这个问题
找到Python38文件夹(在你的安装目录下),进入Scripts,复制pip.exe或pi ...
谢谢,在把pip.exe复制到默认目录下后我可以看到pip是什么了,但是我还是无法安装easygui
我输入指令如下:
”C:\Users\WY2002>pip install easygui“
报错如下:
”WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', OSError('Tunnel connection failed: 403 Forbidden'))': /simple/easygui/
WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', OSError('Tunnel connection failed: 403 Forbidden'))': /simple/easygui/
WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', OSError('Tunnel connection failed: 403 Forbidden'))': /simple/easygui/
WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', OSError('Tunnel connection failed: 403 Forbidden'))': /simple/easygui/
WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', OSError('Tunnel connection failed: 403 Forbidden'))': /simple/easygui/
ERROR: Could not find a version that satisfies the requirement easygui (from versions: none)
ERROR: No matching distribution found for easygui“
请问这步又该怎么解决呢? 大马强 发表于 2021-7-28 22:50
还要配置环境变量
参考这篇https://blog.csdn.net/songlh1234/article/details/82882386?ops_request_misc ...
谢谢,我修改完路径之后可以看到pip界面了,但是我还是无法安装easygui
我输入指令如下:
”C:\Users\WY2002>pip install easygui“
报错如下:
”WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', OSError('Tunnel connection failed: 403 Forbidden'))': /simple/easygui/
WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', OSError('Tunnel connection failed: 403 Forbidden'))': /simple/easygui/
WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', OSError('Tunnel connection failed: 403 Forbidden'))': /simple/easygui/
WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', OSError('Tunnel connection failed: 403 Forbidden'))': /simple/easygui/
WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', OSError('Tunnel connection failed: 403 Forbidden'))': /simple/easygui/
ERROR: Could not find a version that satisfies the requirement easygui (from versions: none)
ERROR: No matching distribution found for easygui“
请问这步又该怎么解决呢?
我去晚上找了一下说是超时,接不上外网。然后选用国内的pypi也是不可以的。
在cmd中打出如下字样:
“C:\Users\WY2002>pip install easygui -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
Looking in indexes: http://pypi.douban.com/simple“
然后报错为:
”ERROR: Could not find a version that satisfies the requirement easygui (from versions: none)
ERROR: No matching distribution found for easygui”
请问接下来怎么办呢? 本帖最后由 nahongyan1997 于 2021-7-29 09:25 编辑
凌晨三点二十八 发表于 2021-7-29 01:48
谢谢,我修改完路径之后可以看到pip界面了,但是我还是无法安装easygui
我输入指令如下:
”C:%users\W ...
链接:https://pan.baidu.com/s/19LszaUy51S4AF1clFED2BQ
提取码:582a
--来自百度网盘超级会员V4的分享
把这个下载双击执行就好了,用完了直接把这个脚本存硬盘里以后遇到同样的问题可以直接用 凌晨三点二十八 发表于 2021-7-29 01:48
谢谢,我修改完路径之后可以看到pip界面了,但是我还是无法安装easygui
我输入指令如下:
”C:%users\W ...
重新装一下python。自带的pip。
之前也遇见过你这个问题,在Linux 下安装编译版的时候,报错后再用,就是这样,最后智能重装。 pip是无法在IDLE里使用的,只能在cmd里使用
pip install easygui -i http://pypi.douban.com/simple python3每次安装会提示是否带环境变量,直接勾选 叼辣条闯世界 发表于 2021-7-29 09:41
pip是无法在IDLE里使用的,只能在cmd里使用
我就是在cmd里面打的.... 塔利班 发表于 2021-7-29 12:32
python3每次安装会提示是否带环境变量,直接勾选
已经勾选了环境变量(add ... path)以及它的recommedation python launcher 也都装了,结果pip可以运行,但是报错如下:
”WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', OSError('Tunnel connection failed: 403 Forbidden'))': /simple/easygui/
WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', OSError('Tunnel connection failed: 403 Forbidden'))': /simple/easygui/
WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', OSError('Tunnel connection failed: 403 Forbidden'))': /simple/easygui/
WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', OSError('Tunnel connection failed: 403 Forbidden'))': /simple/easygui/
WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', OSError('Tunnel connection failed: 403 Forbidden'))': /simple/easygui/
ERROR: Could not find a version that satisfies the requirement easygui (from versions: none)
ERROR: No matching distribution found for easygui“
请问这样该怎么解决?国内的pypi显示
”ERROR: Could not find a version that satisfies the requirement easygui (from versions: none)
ERROR: No matching distribution found for easygui” nahongyan1997 发表于 2021-7-29 09:23
链接:https://pan.baidu.com/s/19LszaUy51S4AF1clFED2BQ
提取码:582a
--来自百度网盘超级会员V4 ...
下载了,双击执行了,但是还是不行 z5560636 发表于 2021-7-29 09:30
重新装一下python。自带的pip。
之前也遇见过你这个问题,在Linux 下安装编译版的时候,报错后再用,就 ...
重装成3.9版本的了,还是不行 凌晨三点二十八 发表于 2021-7-29 16:28
重装成3.9版本的了,还是不行
你重新装吧,把能打勾的全部打上去。 z5560636 发表于 2021-7-29 16:33
你重新装吧,把能打勾的全部打上去。
能打勾的都打勾了 凌晨三点二十八 发表于 2021-7-29 16:27
下载了,双击执行了,但是还是不行
那你用idle 执行一下看看有没有报错
推荐用 python 3.8
nahongyan1997 发表于 2021-7-29 17:06
那你用idle 执行一下看看有没有报错
推荐用 python 3.8
报错了,错误代码如下:
”[33mWARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', OSError('Tunnel connection failed: 403 Forbidden'))': /simple/pip/[0m
[33mWARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', OSError('Tunnel connection failed: 403 Forbidden'))': /simple/pip/[0m
[33mWARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', OSError('Tunnel connection failed: 403 Forbidden'))': /simple/pip/[0m
[33mWARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', OSError('Tunnel connection failed: 403 Forbidden'))': /simple/pip/[0m
[33mWARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', OSError('Tunnel connection failed: 403 Forbidden'))': /simple/pip/[0m
[31mERROR: Could not find a version that satisfies the requirement pip (from versions: none)[0m
[31mERROR: No matching distribution found for pip[0m“ 凌晨三点二十八 发表于 2021-7-29 16:25
已经勾选了环境变量(add ... path)以及它的recommedation python launcher 也都装了,结果pip可以运行 ...
..你的 easygui 怎么还带个冒号呢 凌晨三点二十八 发表于 2021-7-29 17:10
报错了,错误代码如下:
”
卸载干净点再重装吧,我也没遇到我也不知道。
不行就重做系统