2022-01-02 04:34:27 +00:00
|
|
|
# pipwin
|
|
|
|
|
|
|
|
> A tool to install unofficial Python package binaries on Windows.
|
|
|
|
> More information: <https://github.com/lepisma/pipwin>.
|
|
|
|
|
|
|
|
- List all available packages for download:
|
|
|
|
|
|
|
|
`pipwin list`
|
|
|
|
|
|
|
|
- Search packages:
|
|
|
|
|
|
|
|
`pipwin search {{partial_name|name}}`
|
|
|
|
|
|
|
|
- Install a package:
|
|
|
|
|
2023-08-26 18:30:06 +01:00
|
|
|
`pipwin install {{package}}`
|
2022-01-02 04:34:27 +00:00
|
|
|
|
|
|
|
- Uninstall a package:
|
|
|
|
|
2023-08-26 18:30:06 +01:00
|
|
|
`pipwin uninstall {{package}}`
|
2022-01-02 04:34:27 +00:00
|
|
|
|
|
|
|
- Download a package to a specific directory:
|
|
|
|
|
2023-08-26 18:30:06 +01:00
|
|
|
`pipwin download --dest {{path\to\directory}} {{package}}`
|
2022-01-02 04:34:27 +00:00
|
|
|
|
|
|
|
- Install packages according to `requirements.txt`:
|
|
|
|
|
2023-02-20 07:23:49 +00:00
|
|
|
`pipwin install --file {{path\to\requirements.txt}}`
|