Is there any Python IDE for which admin is not needed?

We need an admin to install some software, which will take about a month to install them for us. So I want to find some Python development environment that can be installed without an administrator (Windows 7). Any suggestion?

+7
source share
5 answers

You can also use Pyzo

http://www.pyzo.org/

It is a portable cross-platform Python distribution that comes with an editor called IEP. You can even put it in a USB stick. However, it is focused on scientific use.

Screenshothot

+1
source

Given that IDLE can be thought of as an IDE, you can view the following two options.

Portable python

Movable idle

Netbeans supported Python up to 6.9. You can use the portable version.

Portable netbeans

If you want to use Eclipse to develop Python, here is the portable version. You need PyDev to work with Eclipse.

Portable eclipse

Anaconda as a Python distribution and PyCharm as an IDE.

+5
source

Let me add an awesome spyderlib editor !

+3
source

http://www.portablepython.com/

"Some of the most popular free Python IDEs come pre-installed and pre-configured using Portable Python." - http://www.portablepython.com/wiki/Documentation

or you can use: http://www.voidspace.org.uk/python/movpy/movableidle.html (IDLE)

+2
source

Or you can use something like https://www.pythonanywhere.com .

+2
source

All Articles