欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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