Managing Packages with Pip¶
Pip is a Python package manager. Many Python package documentation provide pip instructions that result in permission errors because by default pip will install in a system-wide location and fail.
If you encounter this error, it means that you cannot modify the global Python installation. We recommend installing Python packages in a conda environment. Detailed instructions for installing packages with pip can be found in our Python package installation page.
Below we list some other useful pip commands.
- Search for a package in PyPI channels:
- Check which packages are installed globally:
- Check which packages you have personally installed:
- Snapshot installed packages:
- You can install packages from a snapshot inside a new conda environment. Make sure to load the appropriate conda environment first.
For more information about Python: