Install python modules on GNU / Linux

installing python modules on GNU / Linux. Are there any good PDF files when installing the modules? I would like to install some of these Python: 50 modules for all needs . I tried PIL http://effbot.org/downloads/Imaging-1.1.7.tar.gz , but this did not work.

PS: what does the wiki community mean?

+3
source share
2 answers

Most of them are probably already available as packages on your Linux distribution. You did not indicate which one you used. Typically, apt-get or yum will cover most of the current distributions. Read the man pages for these tools and use the search functions to find packages containing the name "python" or package names in the list.

If this is not required, install "setuptools", then use "easy-install" to extract them from the Python package index (PyPI).

. , "dev" "development", "python-dev" . -dev-.

distutils ( setuptools) .

$python setup.py build

. , -dev . .

, "sudo python setup.py install", .

.

+4

Debian Ubuntu Python, , - apt-get. easy_install Python, apt-get .

"python -".

,

sudo apt-get install python-imaging
0

Source: https://habr.com/ru/post/1765803/


All Articles