[当我要安装模块时,总是出现错误

问题描述 投票:0回答:1

当我要安装模块时,总是会显示错误消息。这是错误:

pip install turtle
Collecting turtle
  Using cached https://files.pythonhosted.org/packages/ff/f0/21a42e9e424d24bdd0e509d5ed3c7dfb8f47d962d9c044dba903b0b4a26f/turtle-0.0.2.tar.gz
Note: you may need to restart the kernel to use updated packages.
    ERROR: Command errored out with exit status 1:
     command: 'C:\ProgramData\Anaconda3\pythonw.exe' -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\INUKAS~1\\AppData\\Local\\Temp\\pip-install-9aznr_o3\\turtle\\setup.py'"'"'; __file__='"'"'C:\\Users\\INUKAS~1\\AppData\\Local\\Temp\\pip-install-9aznr_o3\\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 pip-egg-info
         cwd: C:\Users\INUKAS~1\AppData\Local\Temp\pip-install-9aznr_o3\turtle\
    Complete output (6 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\INUKAS~1\AppData\Local\Temp\pip-install-9aznr_o3\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.
module install
1个回答
0
投票

尝试升级pip和setuptools:

python -m pip install --upgrade pip

pip install --upgrade setuptools

现在尝试使用以下方法安装模块:

pip install "package-name"
© www.soinside.com 2019 - 2024. All rights reserved.