error: invalid command 'bdist_wheel'
error: invalid command 'bdist_wheel'
在 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?
Can't build wheel - error: invalid command 'bdist_wheel'
我有 pip 10.0.1
wheel 已安装(通过 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'')
我还能看看什么来解决这个问题?
不知道为什么,但是卸载 wheel 修复了它
我卸载了 wheel 以期重新安装它,但它没有重新安装就工作了。
pip uninstall wheel
在 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?
Can't build wheel - error: invalid command 'bdist_wheel'
我有 pip 10.0.1
wheel 已安装(通过 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'')
我还能看看什么来解决这个问题?
不知道为什么,但是卸载 wheel 修复了它
我卸载了 wheel 以期重新安装它,但它没有重新安装就工作了。
pip uninstall wheel