This article mainly introduces how to install the python installation module through setup.py. The installation method is actually very 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? (Recommended learning: Python video tutorial)
Steps
Open cmd to reach the installation directory
python setup .py build
python setup.py install
Installation completed
For more Python related technical articles, please visit the Python Tutorial column to learn!
The above is the detailed content of How to install the package with setup.py in python. For more information, please follow other related articles on the PHP Chinese website!