解决anaconda安装第三方包出现的 ERROR: Command errored out with exit status 1

问题描述:anaconda安装PySide出现了以下问题

  ERROR: Command errored out with exit status 1:
     command: 'd:\anaconda3\python.exe' -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\94435\\AppData\\Local\\Temp\\pip-install-tcbmzzis\\Pyside\\setup.py'"'"'; __file__='"'"'C:\\Users\\94435\\AppData\\Local\\Temp\\pip-install-tcbmzzis\\Pyside\\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 pip-egg-info
         cwd: C:\Users\94435\AppData\Local\Temp\pip-install-tcbmzzis\Pyside\
    Complete output (1 lines):
    only these python versions are supported: [(2, 6), (2, 7), (3, 2), (3, 3), (3, 4)]
    ----------------------------------------
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.

运行pycharm出现以下提示

解决anaconda安装第三方包出现的 ERROR: Command errored out with exit status 1_第1张图片

好吧,既然没有PySide,俺去安装总行了吧。file-》settings-》右边的加号-》搜索,如下图:解决anaconda安装第三方包出现的 ERROR: Command errored out with exit status 1_第2张图片

若干次以后,俺放弃了,因为老是安装失败。后来去了anaconda

解决anaconda安装第三方包出现的 ERROR: Command errored out with exit status 1_第3张图片

依旧失败,不过给出了一个重要信息,那就是PySide只支持2.6,2.7,3.2-3.4版本的python,那么解决办法来了,

pip install PySide2,OK!

解决anaconda安装第三方包出现的 ERROR: Command errored out with exit status 1_第4张图片

重新回到pycharm,安装PySide2,file-》settings-》右边的加号-》搜索-》PySide2-》选中以后左下方有个install,一键解决所有的烦恼,完美。解决anaconda安装第三方包出现的 ERROR: Command errored out with exit status 1_第5张图片

你可能感兴趣的:(解决anaconda安装第三方包出现的 ERROR: Command errored out with exit status 1)