Python报错: python setup.py egg_info" failed with error code 1 in xxxx

Python报错: Command “python setup.py egg_info” failed with error code 1 in C:\Users\Public\Documents\Wondershare\CreatorTemp\pip-install-q898_3gw\Twisted\

这是因为你电脑同时用 Python2.7+ 和3.5+ 版本. 默认pip会使用 2.7+ 版本,而有些库依赖3.5+版本.

  • 这时只需要指定使用 3.5+ 对应的pip版本即可.

    sudo python3 -m pip install aiohttp
    
  • 注意: 有时候你可能需要先更新一下pip版本

    sudo python3 -m pip install --upgrade pip
    

你可能感兴趣的:(Python报错: python setup.py egg_info" failed with error code 1 in xxxx)