Difference between revisions of "Notes on disconnected (offline) (air-gapped) networks"

From Simson Garfinkel
Jump to navigationJump to search
m
Line 9: Line 9:
     pip download [package] -d /tmp --no-binary :all:
     pip download [package] -d /tmp --no-binary :all:


Then install them in the reverse order.
Problem: you are on MacOS running Python 3.9 but need to download linux x86 for Python 3.6:
 
    pip3 download -d . --python-version 36 --abi cp36 --platform linux_x86_64 --no-deps lxml

Revision as of 10:30, 14 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:

Problem: you are on MacOS running Python 3.9 but need to download linux x86 for Python 3.6:

    pip3 download -d . --python-version 36 --abi cp36 --platform linux_x86_64 --no-deps lxml