Home > Article > Backend Development > what is python setup
setup.py is a python file that usually tells you that the module/package you want 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, usually it is enough to write:
python setup.py install
and the module will install itself.
Note:
Python is an interpreted, object-oriented, dynamic data type high-level programming language.
Python was invented by Guido van Rossum at the end of 1989, and the first public release was released in 1991.
Like the Perl language, Python source code also follows the GPL (GNU General Public License) agreement.
Related recommendations: "Python Tutorial"
The above is the detailed content of what is python setup. For more information, please follow other related articles on the PHP Chinese website!