mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-01 13:42:32 +00:00
34 lines
666 B
Plaintext
34 lines
666 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, windows]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# 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:
|
|
|
|
`pipwin install {{package}}`
|
|
|
|
- Uninstall a package:
|
|
|
|
`pipwin uninstall {{package}}`
|
|
|
|
- Download a package to a specific directory:
|
|
|
|
`pipwin download --dest {{path o\directory}} {{package}}`
|
|
|
|
- Install packages according to `requirements.txt`:
|
|
|
|
`pipwin install --file {{path o
|
|
equirements.txt}}`
|