简体   繁体   中英

ERROR: Command errored out with exit status 1 while installing requirements

    ERROR: Command errored out with exit status 1:
 command: /usr/bin/python3 -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-ib3vl4vt/web.py/setup.py'"'"'; __file__='"'"'/tmp/pip-install-ib3vl4vt/web.py/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: /tmp/pip-install-ib3vl4vt/web.py/
Complete output (7 lines):
Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/tmp/pip-install-ib3vl4vt/web.py/setup.py", line 6, in <module>
    from web import __version__
  File "/tmp/pip-install-ib3vl4vt/web.py/web/__init__.py", line 14, in <module>
    import utils, db, net, wsgi, http, webapi, httpserver, debugerror
ModuleNotFoundError: No module named 'utils'
----------------------------------------
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.

While installing requirements.txt in InsecureBankv2/AndroLabServer, I got this errors. Because of these problems, It seems like InsecureBankv2 app won't login to my server.

What should I do to solve this problem?

你有没有尝试过

pip install utils

How i got around this error message was do py -3 -m pip install and it worked properly. I'm using Windows 10 as of July 2020 and inside of a virtual environment.

The error was happening when i attempted to install coderedcms.

在 linux 上试试这个

python3 -m pip install win32gui

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM