Files
notes/tiddlywiki/Python - pip examples.md
2026-03-12 22:01:38 +01:00

10 lines
217 B
Markdown
Executable File

Download module dependencies:
pip download Flask -d .
pip download fabric2 -d .
Offline install a module using pip:
pip install --no-index --find-links ./ fabric2
pip install --no-index --find-links ./ Flask