命令“python setup.py egg_info”失败,错误代码1在C:\ Users \ kadjo \ AppData \ Local \ Temp \ pip-build-p_nzw4hf \ turtle \

时间:2017-08-22 11:41:15

标签: python-2.7 python-3.x pip

我尝试安装turttle包,我得到了这个恐怖:

C:\WINDOWS\system32>pip install turtle
Collecting turtle
Using cached turtle-0.0.2.tar.gz
Complete output from command python setup.py egg_info:
  Traceback (most recent call last):
    File "<string>", line 1, in <module>
    File "C:\Users\kadjo\AppData\Local\Temp\pip-build-p_nzw4hf\turtle\setup.py", line 40
    except ValueError, ve:
                         ^
    SyntaxError: invalid syntax

1 个答案:

答案 0 :(得分:1)

turtle已过时(最后更新于2009年);它肯定只是Python2。

except ValueError, ve:的SyntaxError意味着您正在尝试使用Python3安装它。要使用龟,你肯定需要Python 2.7。