@מוששש This is the answer in a nutshell (source: Chatgpt)
Installing a PIP package on a computer without internet involves a few steps. PIP is a package manager for Python that helps you install and manage Python packages.
Download the Package:
On a computer with internet access, visit the Python Package Index (PyPI) website at https://pypi.org/.
Search for the package you need and download the .tar.gz or .zip file.
Transfer the Package:
Transfer the downloaded package file to the computer without internet using a USB drive or any other means.
Navigate to the Package Directory:
On the computer without internet, unzip the package file and navigate to the extracted directory using the command line or terminal.
Install the Package:
Once inside the package directory, run the following command to install the package:pip install .
This command tells PIP to install the package from the current directory.