Answer the question
In order to leave comments, you need to log in
How to install python modules without internet and pip?
There was a problem, there is a main PC on which there is Internet and pip, but the packages need to be installed on a computer on which there is no Internet, and there is no way to install pip.
Answer the question
In order to leave comments, you need to log in
Kostyan4ik , why is this not possible? With python, you can always find some possibility.
Here, for example, you can download all the necessary packages using the same pip on the computer where there is a python and the Internet:
pip download pip
So you can download all the necessary packages and bring them to a machine without an Internet, just on a USB flash drive.
And there:
python pip-20.1.1-py2.py3-none-any.whl/pip install pip-20.1.1-py2.py3-none-any.whl
pip freeze > r.txt
pip download -r r.txt
We find the necessary packages on https://pypi.org/ , download them from the Download files section and install them locally.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question