Skillshare intro to Python/Unit 1/Windows set up Python: Difference between revisions

no edit summary
imported>Jesstess
imported>Jesstess
No edit summary
Line 1:
== Download and install Python ==
 
We are going to install Python version 2.7.5.
 
If you already have Python installed, check the Python version: it needs to be a version between Python 2.5 and Python 2.7 for this class.
 
== Download and install Python ==
 
<ol>
<li>Click http://python.org/ftp/python/2.7.5/python-2.7.5.msi and choose "run" if you have the option to. Otherwise, save it to your Desktop, then minimize windows to see your desktop, and double click on it to start the installer. Follow the installer instructions to completion.</li>
<li><b>Open a command promptterminal (we will be doing this multiple times, so make a note of how to do this!)</b>:
* On Windows Vista or Windows 7: click on the Start menu (the Windows logo in the lower left of the screen), type <code>cmd</code> into the Search field directly above the Start menu button, and click on "cmd" in the search results above the Search field.
* On Windows XP: click on the Start menu (the Windows logo in the lower left of the screen), click on "Run...", type <code>cmd</code> into the text box, and hit enter.
<br />
You now have what's called a commandterminal prompt. This commandterminal prompt is another way of navigating your computer and running programs -- just textually instead of graphically. We are going to be running Python and Python scripts from this commandterminal prompt.
</li>
<li>At this <code>C:\</code> prompt that appears, test your Python install by typing
Line 19:
</pre>
 
and hittingpressing enterEnter. You should see something like
<pre>
Python 2.7.15 (r271:86832, ...) on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>
Anonymous user