Python
How to Install New Libraries for Python?
- Installation with yum
You can use the yum search command to find a specific package name.
- Installation with pip
If it’s not available on the local source, both yum and pip can be set up with proxies to download from machines with internet access.
- Installation from source
You can search for the needed dependencies packages on the PyPI website. After download, unpack it and run python setup.py install
to install.
For detailed installation steps, you may refer to the Python Development Guide.