Python Forum
Install Python Offline - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Install Python Offline (/thread-16925.html)



Install Python Offline - DTMT - Mar-20-2019

Hey Everyone,

I am very new to Python......about 24 hours new! I have been asked to deploy Python 3.7.2 to multiple workstations. These workstations are in a very secure environment that will not allow internet access. Is it possible to package Python with the required modules, all of their dependencies and then deploy that packaged to these offline workstations? These workstations are all Windows based OS's

The modules I am trying to install are as follows;
a. Pyodbc
b. Xlrd
c. Xlsxwriter
d. Sqlalchemy
e. Pandas
f. Pywin32

Thank you in advance for your help


RE: Install Python Offline - Larz60+ - Mar-20-2019

see: https://docs.python.org/3/using/unix.html
on how to build python from source


RE: Install Python Offline - snippsat - Mar-20-2019

You can use Anaconda,it has all packages you list pre-installed.
It's a stand alone distribution,so can have it on usb stick or just copy over Anaconda3 folder.
Smaller Miniconda no packages,but can install what you need.
It's also stand alone so usb stick/copy folder to PC without internet work.
My Tutorial.