| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
The WinPython "whl" version includes a WheelHouse: a directory containing standard wheel packages (.whl files) sourced from PyPI. This enables users to install pre-downloaded packages quickly, even offline.
To install packages from the local WheelHouse, use:
wppm -i name_of_the_package(s)
To see all packages available in the WheelHouse, use:
wppm -ws . -ls
You can explore the dependencies of packages present in the WheelHouse, just as you would for installed packages. Use:
wppm -ws . -p name_of_the_package(s)
You can view a full Markdown-formatted summary of the WinPython environment, including the WheelHouse, by running:
wppm -md
To compare the installed packages with the packages available in the WheelHouse, use:
wppm -md -ws .
wppm -i numpy pandas matplotlib
Installs numpy, pandas, and matplotlib from the local WheelHouse if present.
wppm -ws . -ls
Lists all packages available in the WheelHouse.
wppm -ws . -p numpy
Displays the dependency tree for numpy as found in the WheelHouse.
wppm -md
Outputs a Markdown summary of the WinPython environment, including the WheelHouse.
wppm -md -ws .
Outputs a Markdown summary that compares installed packages with the WheelHouse contents.
For more details, see the WinPython Documentation.
| Back | FazBrowse Home | New Git URL |