Skip to content
JayaKrishnan edited this page Sep 15, 2013 · 6 revisions

Linux

Append config-extensions.cfg to ~/.idlerc/config-extensions.cfg (If it doesn't exist yet copy the file over) (Once you install IDLE (sudo apt-get install idle) .idlerc directory will be created hidden in your home directory)

Copy extensions/PEP8Check.py and analyzers/pep8.py into YOUR_PYTHON_DIR/idlelib (On my ubuntu YOUR_PYTHON_DIR means /usr/lib/python2.7) This requires root access (sudo), So I did followings,

  • sudo su
  • cp -r extensions/PEP8Check.py /usr/lib/python2.7/idlelib
  • cp -r analyzers/pep8.py /usr/lib/python2.7/idlelib

Windows

TODO:

Clone this wiki locally