I have a virtual machine on my workplace that has no internet connection (and no docker and git). I want to install Rasa (it's an chatbot installed by Python pip package). Normally you would just type: "pip install rasa". This command doesn't function because the VM has no internet connection.
Now I installed Rasa on my private linux laptop to create a full list of dependencys that Rasa needs. How can I download all these pip packages at once? There are about 50 packages and downloading them all manually step-by-step would take many hours.
My intention is to download all requiered pip packages on my private laptop and move them (the .tar.gz files) to my Linux VM at work. After that I want to install all packages offline so that an internet connection isn't required.