What happens when "pip install <package name">
2 answers
1. How does pip find the package?
On the Internet, from the official PyPI repository (Python Package Index). A complete list of all packages can be found here .
2. Where does the pip store the package?
They are installed in your Python directory, depending on your OS. Search PYTHON_PATH/Lib/sites-packages , you can find packages to install via pip :)
3. How to remove a package?
pip uninstall <package-name> +4