[Linux] Ubuntu python-package offline installation
Installing python packages offline
- ๐ Download Python Packages
- check the python version
- ex.pandas-2.1.0-
cp39
: python3.9 using cpython - when using
wget
, the package for the current python will be downloaded automatically
- ex.pandas-2.1.0-
- when build & installing apt-packages might be needed(๐ Ubuntu apt-get offline installation)
- check the python version
tar -xvzf setuptools-68.2.1.tar.gz
cd setuptools-68.2.1/
python3 setup.py build
sudo python3 setup.py install