How to install, download and build Python wheels - ActiveState
www.activestate.com › python-install-wheelOct 07, 2021 · Assuming you don’t first need to install Python from python.org, you can install a wheel by running the following command: pip install <packagename> To install a specific version of a package, run the following command: pip install <packagename>==v.v. For example: pip install django==3.1.13. To install a package from a repository other than PyPI, such as Github: pip install -e git+<https://github.com/myrepo.git#egg=packagename> To upgrade a package that is already installed: