🐍
Python Commands
Python and pip commands for Python development
16 commands found
/ to searchEscto clear
pip install
Install Python packages
pip install requestspip uninstall
Uninstall Python packages
pip uninstall requestspip list
List installed packages
pip listpip freeze
Output installed packages in requirements format
pip freezepython -m venv
Create a virtual environment
python -m venv venvpython
Run Python scripts or start interactive shell
python script.pypip show
Show information about installed package
pip show requestspip download
Download packages without installing them
pip download requestspytest
Run tests with pytest framework
pytestpython -m unittest
Run tests with unittest framework
python -m unittestpython -m pdb
Python debugger
python -m pdb script.pypython --version
Check Python version
python --versionpip --version
Check pip version
pip --versionpython -m pip
Run pip as a Python module
python -m pip install requestspython -m http.server
Start a simple HTTP server
python -m http.serverpip check
Verify installed packages have compatible dependencies
pip check