# Install pip packages offline
# Download pip packages on a machine with internet access
- Download pip packages
1 | mkdir -p ~/wheelhouse |
- Archive the downloaded pip packages
1 | tar zcvf wheelhouse.tar.gz wheelhouse/ |
- Copy the archive file to the target machine, extract and install it
1 | tar zxvf wheelhouse.tar.gz |