0

Possible Duplicate:
How do I add tab completion to the Python shell?

Is there an easy way to add code completion feature to a Python interpreter that is started on a unix console?

Community
  • 1
  • 1
Faruk Sahin
  • 8,406
  • 5
  • 28
  • 34

4 Answers4

0

You should really install something like ipython or bpython

pip install ipython

This will give you a much better python interpreter that offers code completion, history and other magical functions that will make your python experience much better!

Jakob Bowyer
  • 33,878
  • 8
  • 76
  • 91
0

Try using ipython which amoungst other things adds a shell which includes code completion to the intepreter.

mmmmmm
  • 32,227
  • 27
  • 88
  • 117
0

Yes! Take a look at bpython!

You should be able to install it with pip. I actually have it in my Linux distro as a package.

Keith
  • 42,110
  • 11
  • 57
  • 76
-4

Nope thats not possible, you need to use an IDE.

HelloUni
  • 448
  • 2
  • 5
  • 10