python setup.py build sdist bdist_egg 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'解决方法
环境没有安装wheel库 或者setuptools版本不正确
pip install wheel pip install -upgrade setuptools



