How to install the python installation module through setup.py (super simple)

Sometimes we find that some modules do not provide the pip install command and installation tutorial, but only provide a setup.py file. How to install it at this time?

打开cmd
到达安装目录
python setup.py build
python setup.py install

Guess you like

Origin blog.csdn.net/gaoenyang760525/article/details/130114145