在RHEL机器上
我有一些旧的Django项目正在迁移到新服务器上,这些项目是为Python2.6,Django1.4.3编写的
我已经安装了python2.7,在主目录中创建了virtualenvs,调整了路径和对Python版本的引用。
我为Python2.7创建了virtualenv:
virtualenv -p python2.7 ~/.virtualenvs/my_site/
当我激活virtualenv然后将其CD进入网站目录并运行
pip install -r requirements.txt
成功获取所有库之后,对于requirements.txt中的每一行都会显示以下错误:
Building wheels for collected packages: MySQL-python, Pillow...etc
Running setup.py bdist_wheel for MySQL-python ... error
Complete output from command /home/my_user/.virtualenvs/my_site/bin/python2.7 -u -c "import setuptools, tokenize;__file__='/tmp/pip-install-96k9a4/MySQL-python/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" bdist_wheel -d /tmp/pip-wheel-ngSbQU --python-tag cp27:
usage: -c [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
or: -c --help [cmd1 cmd2 ...]
or: -c --help-commands
or: -c cmd --help
error: invalid command 'bdist_wheel'
我在stackexchange和其他网站上发现了许多其他类似的问题,并尝试了修复,但没有成功!
Why can I not create a wheel in python?
Why is python setup.py saying invalid command 'bdist_wheel' on Travis CI?
Can't build wheel - error: invalid command 'bdist_wheel'
我的点数为10.0.1
车轮IS已安装(通过pip install wheel
),我还在虚拟环境中运行了以下命令:
pip install --upgrade pip ('Requirement already up-to-date')
pip install setuptools --upgrade ('Requirement already up-to-date')
python setup.py bdist_wheel ('error: invalid command 'bdist_wheel'')
我还能看些什么来解决这个问题?
答案 0 :(得分:0)
不知道为什么,但是卸载轮修复了它
我为了重新安装而卸载了车轮,但是它无需重新安装即可工作,所以pip可能使用了错误的车轮?
@page { margin: 50px }