What is setup.py?

后端 未结 10 1660
囚心锁ツ
囚心锁ツ 2020-11-22 09:59

Can anyone please explain what setup.py is and how it can be configured or used?

10条回答
  •  臣服心动
    2020-11-22 10:48

    setup.py is a python file, which usually tells you that the module/package you are about to install has 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

提交回复
热议问题