I am working in automation, my team has new Virtual Machines to use. however these Windows VMs come vanilla (no python, no visual c++). The current systems and code use python 2.7.10 ( dont ask why :( ). My task is to deploy the automation code on the new VMs which usually is straight forward, but these new VMs do not have internet access (but have access to SFTP WINSCP). I need to somehow transfer python 2.7.10 and all the dependencies i need such as pandas, numpy etc to the new system. Does anyone have any ideas.
What ive tried so far: Zipping up the Python directory and downloading it into the new VM (didnt work due to site_packages not being installed)
Installing Python 2.7.10 on new VM and manually download and transfer tar.gz files to the new VM and install them manually (didnt work due to constant errors)
Pip and anaconda cant be used due to no internet access
Remember im using Python 2.7.10 and pip version 7.0.3 on the current systems