2023-03-17 09:58 Status: # Installing Python Modules ## PIP Stands for preferred installer program. ## Install a module > python -m pip install SomePackage Pip may be included with a Linux distribution. In this case, one should use a virtual environment (venv) or a per-user installation. [^1] --- # References [^1]: [Installing Python Modules — Python 3.11.2 documentation](https://docs.python.org/3.11/installing/index.html)