Python Forum
Portable Python Programs? - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: General (https://python-forum.io/forum-1.html)
+--- Forum: News and Discussions (https://python-forum.io/forum-31.html)
+--- Thread: Portable Python Programs? (/thread-17913.html)



Portable Python Programs? - GramophoneMimic - Apr-29-2019

Hello, I'm new to Python and programming in general and I was wondering if there are any good portable python programs that can be stored on and ran from a USB. I'm looking for something that is quite small in size and doesn't require admin privileges to run.

Does anyone know of anything that fits this description?
Any help would be much appreciated.


RE: Portable Python Programs? - DeaD_EyE - Apr-29-2019

You can download Python Embedded from the official site: https://www.python.org/downloads/windows/
Then just unzip it and start the python.exe.
Then you'll get the repl. No installation is needed, no admin privileges


You can also use Online-Services like this: https://www.pythonanywhere.com/
A offline installation is better. This does not require an internet connection.


RE: Portable Python Programs? - snippsat - Apr-29-2019

Anaconda | Minconda(without packages)
Make our own packages needed with Miniconda:
conda install scipy pandas requests numpy jupyter
Anaconda/miniconda is a stand alone distribution,so can run from usb stick or just copy folder over to OS.

Running all in browser,i mean full Linux distro like unbuntu and can install with pip.
This by pass all admin privileges on OS,as all run in browser.
Here how it look when i run Cloud9.
[Image: f3g9hM.jpg]


RE: Portable Python Programs? - GramophoneMimic - Apr-30-2019

Thank you both, I'll check them out!