Windows text editor: Difference between revisions

From OpenHatch wiki
Content added Content deleted
No edit summary
imported>Mako
m (minor tweaks)
Line 1: Line 1:
In order to start writing code, you'll benefit from installing a good text editor designed for that purpose.
== Our recommendation ==


On Windows, we suggest the Notepad++ text editor. It is actually unrelated to the Windows default program called Notepad.
On Windows, we suggest the Notepad++ text editor. Although it has a similar name, it is not related to the Windows default program called Notepad.


== Installing Notepad++ ==
To install it:

To install Notepad++:


* Click and download http://download.tuxfamily.org/notepadplus/5.9/npp.5.9.Installer.exe
* Click and download http://download.tuxfamily.org/notepadplus/5.9/npp.5.9.Installer.exe
* Run the installer, and follow the process to the end.
* Run the installer, and follow the process to the end.


To run it:
To run Notepad++:


* In Windows Vista or Windows 7, click on the Start menu, type ''Notepad++'' in the Search Field, and hit enter.
* In Windows Vista or Windows 7, click on the Start menu, type ''Notepad++'' in the Search Field, and hit enter.

Revision as of 23:01, 27 March 2014

In order to start writing code, you'll benefit from installing a good text editor designed for that purpose.

On Windows, we suggest the Notepad++ text editor. Although it has a similar name, it is not related to the Windows default program called Notepad.

Installing Notepad++

To install Notepad++:

To run Notepad++:

  • In Windows Vista or Windows 7, click on the Start menu, type Notepad++ in the Search Field, and hit enter.
  • In Windows XP, click on the Start menu, navigate to All Programs, and then navigate to Notepad++.

Configure Notepad++ to indent with spaces

  • Click Settings -> Preferences
  • Find the tab labeled "Language Menu/Tab Settings"
  • Find the box labeled "Replace by space", and make sure it is checked
  • Click Close.

That's it! Now, you can hit tab to indent your code, and that indentation will actually be made of spaces. This change will help you use spaces consistently, so that Python doesn't get confused about whitespace.

Success!

Now you have an editor that you can use to open any text file, including Python programs.