Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wording, clarified instructions, grammar,... #63

Merged
merged 1 commit into from
Jul 26, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions python_installation/README.md
Original file line number Diff line number Diff line change
@@ -1,56 +1,56 @@
# Let’s start with Python

Huh, it's exciting, right?! You'll write your first line of code in just minutes!
Huh, it's exciting, right?! You'll write your first line of code in just a few minutes!

But first, let us tell you what Python is. Python is a very popular programming language that can be used for creating websites, games, science, graphics and much, much more.
But first, let us tell you what Python is. Python is a very popular programming language that can be used for creating websites, games, scientific software, graphics and much, much more.

Python was conceived in the late 1980s and its main goal is to be readable by human beings (not only machines!), which is why it looks much simpler than other programming languages. That makes it easy to learn, but don't worry, Python is also really powerful!
Python was conceived in the late 1980s and its main goal is to be readable by human beings (not only machines!), which is why it looks much simpler than other programming languages. This makes it easy to learn, but don't worry, Python is also really powerful!

# Python installation

*This subchapter is based on awesome tutorials by Geek Girls Carrots (http://django.carrots.pl/)*

Django is written in Python. We need it to do anything in Django. Let's start with installing it! We want you to install Python 3.4, so if you have any earlier version, you will need to upgrade it.
Django is written in Python. We need Python to do anything in Django. Let's start with installing it! We want you to install Python 3.4, so if you have any earlier version, you will need to upgrade it.

### Windows

You can download Python for Windows from the website https://www.python.org/download/releases/3.4.1/. After downloading the ***.msi** file, you should execute it (double-click on it) and follow the instructions there. It is important to remember the path (the folder) where you installed Python. It will be needed later!

### Linux

It is very likely that you already have Python installed out of the box. To check if you have it installed (and which version it is), you type in a console:
It is very likely that you already have Python installed out of the box. To check if you have it installed (and which version it is), you type the following into your console:

$ python3 --version
Python 3.4.1

If you don't have Python installed or you want a different version, you can install it as follows.
If you don't have Python installed or if you want a different version, you can install it as follows:

#### Ubuntu

You type in the console:
Type this command into your console:

sudo apt-get install python3.4


#### Fedora

You type in the console:
Use this command in your console:

sudo yum install python3.4

### OS X

You need to go to the website https://www.python.org/downloads/release/python-341/ and download the installer.
You need to go to the website https://www.python.org/downloads/release/python-341/ and download the Python installer:

* Download *Mac OS X 64-bit/32-bit installer* *DMG* file
* Double click to open it
* Double click *Python.mpkg* to run the installer
* Download the *Mac OS X 64-bit/32-bit installer* *DMG* file,
* double click to open it,
* double click *Python.mpkg* to run the installer.

Verify the installation succeeded by opening *Terminal* and running `python` command:
Verify the installation was successful by opening the *Terminal* application and running the `python3` command:

$ python3 --version
Python 3.4.1

----

If you have any doubts or something went wrong and you have no idea what to do next - please ask your coach! Sometimes things are not going smoothly and it's better to ask for help from someone with more experience.
If you have any doubts or if something went wrong and you have no idea what to do next - please ask your coach! Sometimes things are not going smoothly and it's better to ask for help from someone with more experience.