Skip to content
Merged
Show file tree
Hide file tree
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
27 changes: 20 additions & 7 deletions en/python_installation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@ But first, let us tell you what Python is. Python is a very popular programming

Python originated 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 a tutorial by Geek Girls Carrots (http://django.carrots.pl/)

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/downloads/release/python-343/. After downloading the ***.msi** file, you should run it (double-click on it) and follow the instructions there. It is important to remember the path (the directory) where you installed Python. It will be needed later!
Expand All @@ -20,6 +22,7 @@ One thing to watch out for: on the second screen of the installation wizard, ma

![Don't forget to add Python to the Path](images/add_python_to_windows_path.png)


### 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), open a console and type the following command:
Expand All @@ -29,25 +32,35 @@ It is very likely that you already have Python installed out of the box. To chec

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

#### Ubuntu

#### Debian or Ubuntu

Type this command into your console:

sudo apt-get install python3.4
$ sudo apt-get install python3.4


#### Fedora
#### Fedora (up to 21)

Use this command in your console:

sudo yum install python3.4
$ sudo yum install python3.4


#### Fedora (22+)

Use this command in your console:

$ sudo dnf install python3.4


### OS X

You need to go to the website https://www.python.org/downloads/release/python-342/ and download the Python 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.
* 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 was successful by opening the *Terminal* application and running the `python3` command:

Expand Down
23 changes: 17 additions & 6 deletions es/python_installation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,19 @@ Pero primero, déjenos decirte qué es Python. Python es un lenguaje de programa

Python se originó en la década de 1980 y su objetivo principal es ser legible por los seres humanos (no sólo las máquinas!), por eso parece mucho más simple que otros lenguajes de programación. Esto lo hace fácil de aprender, pero no te preocupes, Python es también muy poderoso!


# Instalación de Python

> Este subcapítulo se basa en un tutorial de Geek Girls Carrots (http://django.carrots.pl/)

Django está escrito en Python. Necesitamos Python para cualquier cosa en Django. Vamos a empezar con la instalación! Queremos que instales Python 3.4, así que si tienes alguna versión anterior, deberás actualizarla.


### Windows

Puedes descargar Python para Windows desde el sitio web https://www.python.org/downloads/release/python-342/. Después de descargar el archivo ***.msi**, debes ejecutarlo (has doble clic en el archivo) y sige las instrucciones. Es importante recordar el camino (el directorio) donde se ha instalado Python. Será necesario más adelante!


### Linux

Es muy probable que ya tengas Python instalado. Para verificar si lo tienes (y que versión es), abrir la consola y escribe el siguiente comando:
Expand All @@ -26,19 +29,27 @@ Es muy probable que ya tengas Python instalado. Para verificar si lo tienes (y q

Si no tienes instalado Python o si deseas una versión diferente, se puede instalar de la siguiente manera:

#### Ubuntu

#### Debian o Ubuntu

Escribe este comando en la consola:

sudo apt-get install python3.4
$ sudo apt-get install python3.4


#### Fedora
#### Fedora (<=21)

Usa este comando en la consola:

sudo yum install python3.4

$ sudo yum install python3.4


#### Fedora (22+)

Usa este comando en la consola:

$ sudo yum install python3.4


### OS X

Expand Down
24 changes: 17 additions & 7 deletions fr/python_installation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,39 +6,49 @@ Tout d'abord, laissez-nous vous en dire un peu plus sur Python. Python est un la

Python a été créé à la fin des années 1980. Le rendre lisible par des humains, et non seulement des machines, était l'objectif principal des créateurs du langage. Par conséquent, il a l'air beaucoup plus simple à lire que d'autres langages de programmation. Ne vous fiez pas à son apparente simplicité de lecture et d'apprentissage : Python est un langage très puissant !


# Installation de Python

> Note : ce sous-chapitre est largement inspiré d'un autre tutoriel réalisé par les Geek Girls Carrots (http://django.carrots.pl/)

Django est écrit en Python. Pour réaliser quelque chose en Django, il va nous falloir Python. Commençons par installer ce dernier ! Pour ce tutoriel, nous utilisons la version 3.4 de Python. Si vous avez une version antérieure, il va falloir la mettre à jour.


### Windows

Vous pouvez télécharger Python pour Windows à partir de ce site : https://www.python.org/downloads/release/python-342/. Après avoir téléchargé le fichier ***.msi**, lancez le en double-cliquant sur son icône et suivez les instructions qui s'affichent à l'écran. Attention : il est important de se souvenir du chemin d'accès (le dossier) où vous avez installé Python. Vous en aurez besoin plus tard.


### Linux

Il est très probable que Python soit déjà installé sur votre machine. Afin de vérifier qu'il est bien installé (et surtout quelle version vous avez), ouvrez une console et taper la commande suivante :

$ python3 --version
Python 3.4.2


Si Python n'est pas installé ou que vous avez une version différente, vous pouvez l'installer en suivant les instructions suivantes :

#### Ubuntu

#### Debian ou Ubuntu

Tapez cette commande dans votre console :

sudo apt-get install python3.4
$ sudo apt-get install python3.4


#### Fedora
#### Fedora (<=21)

Tapez cette commande dans votre console :

sudo yum install python3.4

$ sudo yum install python3.4


#### Fedora (22+)

Tapez cette commande dans votre console :

$ sudo dnf install python3.4


### OS X

Expand Down
19 changes: 13 additions & 6 deletions pl/python_installation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,26 @@ Jest bardzo prawdopodobne, że masz już zainstalowanego Pythona wraz z systemem

Jeżeli nie masz zainstalowanego Pythona, lub chciałabyś zainstalować go w innej wersji, skorzystaj z jednego z poniższych sposobów:

#### Ubuntu
#### Debian lub Ubuntu

Wpisz w konsoli poniższe polecenie:

sudo apt-get install python3.4
$ sudo apt-get install python3.4


#### Fedora
#### Fedora (<=21)

Użyj następującego polecenia w konsoli:

sudo yum install python3.4

$ sudo yum install python3.4


#### Fedora (22+)

Użyj następującego polecenia w konsoli:

$ sudo dnf install python3.4


### OS X

Expand Down
15 changes: 11 additions & 4 deletions uk/python_installation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,25 @@ Python для Windows можна завантажити з сайту https://ww

Якщо Python не встановлено або ви бажаєте встановити іншу версію, то можете виконати встановлення наступним чином:

#### Ubuntu
#### Debian або Ubuntu

Наберіть наступну команду в консолі:

sudo apt-get install python3.4
$ sudo apt-get install python3.4


#### Fedora
#### Fedora (<=21)

Скористайтеся наступною командою в консолі:

sudo yum install python3.4
$ sudo yum install python3.4


#### Fedora (22+)

Скористайтеся наступною командою в консолі:

$ sudo dnf install python3.4


### OS X
Expand Down