How can I install python packages with pip or conda on a linux server without an internet connection when I have differnet architectures.
I know I can do pip download -r requirements.txt
on the system with internet connection and then put it on the system without internet connection and install it locally, but the problem with this workflow is, that my internet system is windows and the server without internet connection is redhat linux.
Are there ways to slove that?