小编典典

为什么我不能在python中创建轮子?

python

这是我正在运行的命令:

$ python setup.py bdist_wheel
usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
   or: setup.py --help [cmd1 cmd2 ...]
   or: setup.py --help-commands
   or: setup.py cmd --help

error: invalid command 'bdist_wheel'

$ pip --version
pip 1.5.6 from /usr/local/lib/python3.4/site-packages (python 3.4)

$ python -c "import setuptools; print(setuptools.__version__)"
2.1

$ python --version
Python 3.4.1

$ which python
/usr/local/bin/python

另外,我正在使用自制Python运行Mac

这是我的setup.py脚本:https
:
//gist.github.com/cloudformdesign/4791c46fe7cd52eb61cd

我要疯了-我不知道为什么这不起作用。


阅读 238

收藏
2020-12-20

共1个答案

小编典典

首先安装wheel软件包

pip install wheel

文档并不太清楚,但是 “ wheel项目为setuptools提供了bdist_wheel命令” 实际上意味着 “ wheel package
…”

2020-12-20