Difference between revisions of "Notes on disconnected (offline) (air-gapped) networks"
From Simson Garfinkel
Jump to navigationJump to search
(Created page with "Python modules: * https://stackoverflow.com/questions/11147667/is-there-a-way-to-list-pip-dependencies-requirements Download all of the python modules with pip download [pa...") |
m |
||
Line 5: | Line 5: | ||
Download all of the python modules with | Download all of the python modules with | ||
pip download [package] -d /tmp --no-binary :all: | pip wheel [package] -w /tmp | ||
or: | |||
pip download [package] -d /tmp --no-binary :all: | |||
Then install them in the reverse order. | Then install them in the reverse order. |
Revision as of 08:09, 9 August 2020
Python modules:
Download all of the python modules with
pip wheel [package] -w /tmp
or:
pip download [package] -d /tmp --no-binary :all:
Then install them in the reverse order.