Sam King
Sam King

Reputation: 2188

How to Run Python without a Terminal

I want to teach some students basic Python programming without having to teach them how to use the terminal. Recently, I was teaching a 2 hour intro session, and not only did teaching terminal stuff take a long time, but it also intimidated a lot of the students. I would like a solution where students wouldn't have to leave graphical user interfaces that they were comfortable with.

I also want the solution to let them execute a particular Python file (eg, not just using the interactive Python interpreter) and see the output from printing things.

Thanks!

Upvotes: 1

Views: 502

Answers (5)

Robᵩ
Robᵩ

Reputation: 168646

When I'm not near my own PC, I use ideone.com. I like that it is a universal IDE, which for me means both C++ and Python.

Upvotes: 0

cjfro
cjfro

Reputation: 222

You might want to try something like this: http://repl.it/languages/python

Upvotes: 1

user1971598
user1971598

Reputation:

How about this?

https://www.wakari.io/

All in the browser.

Bonus points, you introduce them to IPython as well.

Take a look at the gallery too, https://www.wakari.io/gallery

Upvotes: 1

DavKa
DavKa

Reputation: 326

Perhaps you want something like this: http://learn.adafruit.com/webide/overview

Upvotes: 0

Daniel Roseman
Daniel Roseman

Reputation: 599630

Surely that's what IDLE is for? It's not much good as an IDE, but it does work well for exactly what you describe - opening modules and executing them, and running commands in an interactive shell.

Upvotes: 8

Related Questions