I have a Python project for which I created a requirements.txt file which contains following:
esoreader==1.2.3
matplotlib==3.6.2
pandas==1.5.2
Pillow==9.3.0
streamlit==1.14.1
streamlit-ext==0.1.4
streamlit-extras==0.2.4
st-pages==0.3.0
eppy==0.5.63
geomeppy==0.11.8
psychrolib==2.5.0
psychrochart==0.3.1
pvlib==0.9.3
enlopy==0.1.dev12
fpdf2==2.6.0
I can install all packages and relevant dependencies using 'pip install -r requirements.txt' to run the project in another system. However, any system which has firewall or other IT restrictions, is blocking installation of open-source packages.
I was wondering, if there is any way to download all relevant Python packages and dependencies using local install method which I can save in a folder maybe beforehand. It would then install them from that local folder without using network access.
Let me know if someone know how to do such?
Best,
Debayan