setup.py
is a python file, the presence of which is an indication that the module/package you are about to install has likely been packaged and distributed with Distutils, which is the standard for distributing Python Modules.
This allows you to easily install Python packages. Often it's enough to write:
$ pip install .
pip
will use setup.py
to install your module. Avoid calling setup.py
directly.
https://docs.python.org/3/installing/index.html#installing-index
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…