运行源代码时遇到语法错误通风源在mac终端上

2024-10-08 20:21:01 发布

您现在位置:Python中文网/ 问答频道 /正文

我正在运行“源”通风源“命令在我的Mac终端里面从Github克隆了一个repo,有人能帮我吗。你知道吗

=========================================
Activating virtual environment
=========================================
Executing: source /Users/jillasai.krishna/test_data_venv/bin/activate
Done

=========================================
Installing requirements inside virtual environment
=========================================
Executing: pip install -r /Users/jillasai.krishna/pi-tcms-1/pi-tcms/requirements.txt
Collecting cheetah==2.4.4
  Using cached https://files.pythonhosted.org/packages/cd/b0/c2d700252fc251e91c08639ff41a8a5203b627f4e0a2ae18a6b662ab32ea/Cheetah-2.4.4.tar.gz
    ERROR: Command errored out with exit status 1:
     command: /Users/jillasai.krishna/test_data_venv/bin/python3.7 -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/4b/6t4qhtp51zlg9dqbh8hv743c0000gp/T/pip-install-y1gjebi8/cheetah/setup.py'"'"'; __file__='"'"'/private/var/folders/4b/6t4qhtp51zlg9dqbh8hv743c0000gp/T/pip-install-y1gjebi8/cheetah/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/4b/6t4qhtp51zlg9dqbh8hv743c0000gp/T/pip-install-y1gjebi8/cheetah/pip-egg-info
         cwd: /private/var/folders/4b/6t4qhtp51zlg9dqbh8hv743c0000gp/T/pip-install-y1gjebi8/cheetah/
    Complete output (8 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "/private/var/folders/4b/6t4qhtp51zlg9dqbh8hv743c0000gp/T/pip-install-y1gjebi8/cheetah/setup.py", line 10, in <module>
        import SetupTools
      File "/private/var/folders/4b/6t4qhtp51zlg9dqbh8hv743c0000gp/T/pip-install-y1gjebi8/cheetah/SetupTools.py", line 50
        except DistutilsPlatformError, x:
                                     ^
    SyntaxError: invalid syntax
    ----------------------------------------
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
Done

Could not install all the requirements


希望成功安装venv,但遇到上述错误。你知道吗


Tags: installpippyvenveggvarsetupprivate
1条回答
网友
1楼 · 发布于 2024-10-08 20:21:01

/Users/jillasai.krishna/pi-tcms-1/pi-tcms/requirements.txt包含cheetah==2.4.4。这个版本的猎豹只适用于Python2,你正在尝试与Python3一起使用。你知道吗

可以将项目与Python2.7一起使用,也可以将项目升级到Python3。Cheetah3同时支持python2.7和3.4+。你知道吗

首先尝试用Cheetah3==3.2.4替换cheetah==2.4.4。你知道吗

相关问题 更多 >

    热门问题