Docs
uhadoop
FAQs
Python

Python

How to Install New Libraries for Python?

  1. Installation with yum

You can use the yum search command to find a specific package name.

  1. 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.

  1. 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.