添加链接
link之家
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接

python下载第三方库的时候报错ERROR: Command errored out with exit status 1: python setup.py egg_info Check the

最新推荐文章于 2023-05-08 23:53:54 发布
最新推荐文章于 2023-05-08 23:53:54 发布 10076

python下载第三方库的时候报错ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.

报错 的全部信息

ERROR: Command errored out with exit status 1:
     command: /Library/Frameworks/Python.framework/Versions/3.8/bin/python3.8 -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/t1/tt6kbsj11wv29p0v142n8c2h0000gn/T/pip-install-rclg4cgk/turtle/setup.py'"'"'; __file__='"'"'/private/var/folders/t1/tt6kbsj11wv29p0v142n8c2h0000gn/T/pip-install-rclg4cgk/turtle/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /private/var/folders/t1/tt6kbsj11wv29p0v142n8c2h0000gn/T/pip-pip-egg-info-s4b4btfz
         cwd: /private/var/folders/t1/tt6kbsj11wv29p0v142n8c2h0000gn/T/pip-install-rclg4cgk/turtle/
    Complete output (6 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "/private/var/folders/t1/tt6kbsj11wv29p0v142n8c2h0000gn/T/pip-install-rclg4cgk/turtle/setup.py", line 40
        except ValueError, ve:
    SyntaxError: invalid syntax
    ----------------------------------------
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.

然后再网上搜索了非常多的方法,试过了所有的方法
第一种是pip版本过低的原因,报错提到version:pip install—upgrade pip
第二中网上是说setuptools版本过低:pip install --upgrade setuptools
但注意以上两种方法都没有解决我的问题

因为是mac的原因,内带python,所以甚至考虑了版本冲突的问题,但最后还是没有解决,但今天突然想到一个问题,就是我要安装的包是turtle,因为之前没有接触这个包,会不会这个包压根儿就不是第三方包,我直接在程序使用了,发现代码没有问题,也没报错。至此,该问题解决。这个错误离谱就在于这个报错非常迷惑,并不是直接报错说明该包是内置的。另外一定要测试一哈,可以选择将以前存在的包删除一哈,再使用pip来下载尝试。如果没报错,就要去寻找其他的思路了。当然如果急需某些包,尝试直接去网上下载这些轮子,而不是pip那种方式进行下载。

python下载第三方库的时候报错ERROR: Command errored out with exit status 1: python setup.py egg_info Check the python下载第三方库的时候报错ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.报错 的全部信息ERROR: Command errored out with exit status 1: command: /Library/Frameworks/Python.framework/Versions/3.8/bin/pyt
python安装torch时遇到 ERROR: Command errored out with exit status 1: 之前用pycharm运行github上一个模型时,遇到了import torch失败的问题,而且用pip安装失败。我根据网上的教程我的博客里有详细教程用Anaconda安装了torch,问题确实得到了解决,torch安装成功。紧接着再运行模型时就发现了更多的错误,研究了很久发现是之前安装的torch版本有问题。再用pip安装就出现了上面的错误。 看到出现了这么多乱七八糟的东西就很慌,找了一下午,终于找到了最终的解决方法: 查看自己的python版本 点开自己的pyc
完美解决ERROR: Command errored out with exit status 1: command: ‘f:\program files\python\python36\pyt
今天安装gevent时出现 ERROR: Command errored out with exit status 1,后面还有一堆错误,好像是说“文件”、setup啊之类的,我在网上花了两小时查了很多方法(例如:升级pip、升级setuptool,然而并没用,难受),最后终于找到一个解决我问题的办法。 1、进入https://www.lfd.uci.edu/~gohlke/pythonlibs/,该网址按照首字母排序,找到自己对应的版本下载下来(我是用的3.8,64位,即下面第一个): Gevent: a coroutine-based networking library based o
安装库是发生错误: ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output. 经过检查后发现使我安装的版本太高的原因,调低版本就解决了。
在pip安装过程中,如果遇到ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output. 执行以下命令即可解决 pip install --user pytest-runner
python安装第三方库遇到 ERROR: Command errored out with exit status 1:…的问题 先来看看错误提示: 本来想用python弄个词云玩玩,没想到在安装wordcloud库的时候居然给我这一大串红叉叉,很是奔溃,出师不利啊! 报错的部分内容如下: ERROR: Command errored out with exit status 1: comma...
在学习《python数据处理》时遇到了安装slate出错,这个问题不仅在slate、在之前按照pycurl时也出现,一直没有解决,原因差不多,都是这个报错,涉及python setup.py egg_info Check the logs for full command output. 报错内容: ERROR: Command errored out with exit status 1: command: 'C:\Users\Administrator\AppData\Local\Programs\Python\Python37\python.exe' -c 'import sys, s
解决方法: 1、以管理员身份打开cmd 2、pip install robotframework-AutoItLibrary (本次安装时Python基于3.6.3,pip为最新版本) 3、安装成功
Python报错 ERRORCommand errored out with exit status 1 最近在学习随机矩阵理论RMT(Random Matrix Theory),因为自己本身数学不太好,理论学习了一通,讲真,还是没懂说什么。。所以想着先上代码吧,然后在下载随机矩阵理论的Python包——scikit-rmt时,出现了报错:“ERRORCommand errored out with exit status 1”。 错误主要看最后三行。 File "D:\USER_C~1\pip-in
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full comm我在ubuntu20 安装mysqlclient时出现这种错误,经过一段查找终于找到解决方法 我在ubuntu20 安装mysqlclient时出现这种错误,经过一段查找终于找到解决方法 ERROR: Command errored out with exit status 1: command: /
python下载第三方库的时候报错ERROR: Command errored out with exit status 1: python setup.py egg_info Check the 10074