The PIP program enables you to install Python packages.
To use the PIP program, follow these steps:
1.Activate the environment. Please enter the following command. Replace 'experiment' with the environment name.
source ~/experiment/bin/activate
2.Type the following command to search for a certain package or group of packages. Put the name of the package you wish to search for in place of 'pkgname'.
pip search pkgname
3.Type the following command to install a Python package. Put the name of the package you want to install in place of 'pkgname'.
pip install pkgname