בקשת מידע | האם ניתן להתקין מודולי Python במחשב לא מקוון (על ידי הורדה ממחשב אחר)?
-
python_book.pdf
כאן יש מדריך לפייתון.
בהתחלה יש הסבר מאיפה להוריד קובצי התקנה (במקרה הזה exe.)
לי זה עבד אופליין. -
@מוששש כתב בבקשת מידע | האם ניתן להתקין מודולי Python במחשב לא מקוון (על ידי הורדה ממחשב אחר)?:
Is it possible to install Python modules on an offline computer (by downloading from another computer)?
in https://pypi.org you can search for your
package and download the source code or
a precompiled whl file. then install it with pip from local storage. -
@מוששש 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:
This command tells PIP to install the package from the current directory.pip install .
- Once inside the package directory, run the following command to install the package:
-