How do you run a setup.py file properly?
程序员文章站
2022-03-02 15:30:43
...
If you want to install it then the command is install
:
python setup.py install
If you need to build the package first, use the build
command before installing:
python setup.py build
Hope this helps!
参考:https://*.com/questions/31373797/how-do-you-run-a-setup-py-file-properly