https://github.com/ffy00/python-install
A simple, correct PEP427 wheel installer
https://github.com/ffy00/python-install
hacktoberfest install package pep427 python wheel
Last synced: 4 months ago
JSON representation
A simple, correct PEP427 wheel installer
- Host: GitHub
- URL: https://github.com/ffy00/python-install
- Owner: FFY00
- License: mit
- Created: 2020-05-27T22:14:14.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-30T11:59:34.000Z (almost 5 years ago)
- Last Synced: 2024-12-30T08:22:04.677Z (about 1 year ago)
- Topics: hacktoberfest, install, package, pep427, python, wheel
- Language: Python
- Homepage:
- Size: 87.9 KB
- Stars: 12
- Watchers: 4
- Forks: 2
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# python-install
A simple, correct PEP427 wheel installer.
```sh
$ python -m install -h
usage: python -m install [-h] [--verbose] [--optimize [level [level ...]]] [--destdir /] [--verify-dependencies] [--cache] [--skip-build] [--ignore-incomplete-installation-warnings] [wheel]
positional arguments:
wheel wheel file to install
optional arguments:
-h, --help show this help message and exit
--verbose, -v enable verbose output
--optimize [level [level ...]], -o [level [level ...]]
optimization level(s) (default=0, 1, 2)
--destdir /, -d / destination directory
--verify-dependencies, -t
check if the dependencies are met
--cache, -c generate the installation cache
--skip-build, -s skip the cache building step, requires cache to be present already
--ignore-incomplete-installation-warnings, -w
stop treating incomplete installation warnings as errors
```
Missing components:
- Checksum verification
- Custom data installation:
- `headers`
- `data`