Boston Python Workshop/Friday handout/Windows: Difference between revisions

removing spam
imported>Paulproteus
imported>Brittag
(removing spam)
 
(10 intermediate revisions by 5 users not shown)
Line 18:
* Go to http://python.org/download/ and download the latest version of Python ''2.7'' (2.7.1 at the time of writing).
 
* Test your Python install in the command prompt using the "-v" version flag:
 
\python27\python.exe -V
 
You should see something like
Line 36:
 
== Install Git for Windows ==
* Go to http[https://code.google.com/p/msysgit/downloads/list the downloads page (akafor GitBash)]
** Click on the top "Downloads" tab
** Download the top .exe file link with the Summary something like "Full installer for official Git 1.7.x.x"
* Run the install.
Line 63 ⟶ 62:
git config --global user.email YourEmail@domain.com
* Replace ''YourEmail@domain.com'' with your email address.
 
Test it:
 
git config --global user.name
git config --global user.email
 
 
=== Tip: Colors ===
To have colored output, in the command prompt type each line followed by '''<enter>''':
 
<pre>
git config --global color.diff auto
git config --global color.status auto
git config --global color.branch auto
</pre>
 
== Install SQLite Manager ==
Line 100 ⟶ 104:
 
* Your brand-new public key is now stored at <code>.ssh/id_rsa.pub</code> inside your Windows profile.
 
'''Note''': The ''ssh-keygen'' command will give you a bunch of output. You don't have to record that output anywhere.
 
== Django ==
Line 147 ⟶ 153:
* Run the installer, and now you will find PuTTY in
** '''Start'''->'''Programs'''->'''PuTTY'''
 
'''Now go back to the [https://openhatch.org/wiki/Setting_up_the_web_app#Section_3:_Configuring_your_accounts_on_the_web web app install instructions]'''
Anonymous user