尝试运行命令pip install mod_wsgi
时出现以下错误。我已经安装了c ++
Command "c:\python27\python.exe -u -c "import setuptools, tokenize;__file__='c:\\users\\mouni\\appdata\\local\\temp\\pip-build-lfndcw\\mod-wsgi\\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record c:\users\mouni\appdata\local\temp\pip-2si83h-record\install-record.txt --single-version-externally-managed --compile" failed with error code 1 in c:\users\mouni\appdata\local\temp\pip-build-lfndcw\mod-wsgi\`
有人可以帮我解决吗
答案 0 :(得分:-2)
此错误可能是由pip的过期版本引起的。尝试通过运行以下命令来升级您的pip版本:
python -m pip install -U pip
然后再次尝试安装mod_wsgi。