Skip to content

Commit c5026e1

Browse files
committed
Added support for Fedora 22 and added some consistency in terms of spacing
1 parent f7f8bf9 commit c5026e1

File tree

5 files changed

+78
-30
lines changed

5 files changed

+78
-30
lines changed

en/python_installation/README.md

Lines changed: 20 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@ But first, let us tell you what Python is. Python is a very popular programming
66

77
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!
88

9+
910
# Python installation
1011

1112
> This subchapter is based on a tutorial by Geek Girls Carrots (http://django.carrots.pl/)
1213
1314
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.
1415

16+
1517
### Windows
1618

1719
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!
@@ -20,6 +22,7 @@ One thing to watch out for: on the second screen of the installation wizard, ma
2022

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

25+
2326
### Linux
2427

2528
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:
@@ -29,25 +32,35 @@ It is very likely that you already have Python installed out of the box. To chec
2932

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

32-
#### Ubuntu
35+
36+
#### Debian or Ubuntu
3337

3438
Type this command into your console:
3539

36-
sudo apt-get install python3.4
40+
$ sudo apt-get install python3.4
41+
3742

38-
#### Fedora
43+
#### Fedora (up to 21)
3944

4045
Use this command in your console:
4146

42-
sudo yum install python3.4
47+
$ sudo yum install python3.4
48+
49+
50+
#### Fedora (22+)
51+
52+
Use this command in your console:
53+
54+
$ sudo dnf install python3.4
55+
4356

4457
### OS X
4558

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

48-
* download the *Mac OS X 64-bit/32-bit installer* *DMG* file,
49-
* double click to open it,
50-
* double click *Python.mpkg* to run the installer.
61+
* Download the *Mac OS X 64-bit/32-bit installer* *DMG* file,
62+
* Double click to open it,
63+
* Double click *Python.mpkg* to run the installer.
5164

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

es/python_installation/README.md

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,19 @@ Pero primero, déjenos decirte qué es Python. Python es un lenguaje de programa
66

77
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!
88

9+
910
# Instalación de Python
1011

1112
> Este subcapítulo se basa en un tutorial de Geek Girls Carrots (http://django.carrots.pl/)
1213
1314
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.
1415

16+
1517
### Windows
1618

1719
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!
1820

21+
1922
### Linux
2023

2124
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:
@@ -26,19 +29,27 @@ Es muy probable que ya tengas Python instalado. Para verificar si lo tienes (y q
2629

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

29-
#### Ubuntu
32+
33+
#### Debian o Ubuntu
3034

3135
Escribe este comando en la consola:
3236

33-
sudo apt-get install python3.4
34-
37+
$ sudo apt-get install python3.4
38+
3539

36-
#### Fedora
40+
#### Fedora (<=21)
3741

3842
Usa este comando en la consola:
3943

40-
sudo yum install python3.4
41-
44+
$ sudo yum install python3.4
45+
46+
47+
#### Fedora (22+)
48+
49+
Usa este comando en la consola:
50+
51+
$ sudo yum install python3.4
52+
4253

4354
### OS X
4455

fr/python_installation/README.md

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,39 +6,49 @@ Tout d'abord, laissez-nous vous en dire un peu plus sur Python. Python est un la
66

77
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 !
88

9+
910
# Installation de Python
1011

1112
> Note : ce sous-chapitre est largement inspiré d'un autre tutoriel réalisé par les Geek Girls Carrots (http://django.carrots.pl/)
1213
1314
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.
1415

16+
1517
### Windows
1618

1719
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.
1820

21+
1922
### Linux
2023

2124
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 :
2225

2326
$ python3 --version
2427
Python 3.4.2
25-
2628

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

29-
#### Ubuntu
31+
32+
#### Debian ou Ubuntu
3033

3134
Tapez cette commande dans votre console :
3235

33-
sudo apt-get install python3.4
34-
36+
$ sudo apt-get install python3.4
37+
3538

36-
#### Fedora
39+
#### Fedora (<=21)
3740

3841
Tapez cette commande dans votre console :
3942

40-
sudo yum install python3.4
41-
43+
$ sudo yum install python3.4
44+
45+
46+
#### Fedora (22+)
47+
48+
Tapez cette commande dans votre console :
49+
50+
$ sudo dnf install python3.4
51+
4252

4353
### OS X
4454

pl/python_installation/README.md

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,26 @@ Jest bardzo prawdopodobne, że masz już zainstalowanego Pythona wraz z systemem
2626

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

29-
#### Ubuntu
29+
#### Debian lub Ubuntu
3030

3131
Wpisz w konsoli poniższe polecenie:
3232

33-
sudo apt-get install python3.4
34-
33+
$ sudo apt-get install python3.4
34+
3535

36-
#### Fedora
36+
#### Fedora (<=21)
3737

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

40-
sudo yum install python3.4
41-
40+
$ sudo yum install python3.4
41+
42+
43+
#### Fedora (22+)
44+
45+
Użyj następującego polecenia w konsoli:
46+
47+
$ sudo dnf install python3.4
48+
4249

4350
### OS X
4451

uk/python_installation/README.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,25 @@ Python для Windows можна завантажити з сайту https://ww
2626

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

29-
#### Ubuntu
29+
#### Debian або Ubuntu
3030

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

33-
sudo apt-get install python3.4
33+
$ sudo apt-get install python3.4
3434

3535

36-
#### Fedora
36+
#### Fedora (<=21)
3737

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

40-
sudo yum install python3.4
40+
$ sudo yum install python3.4
41+
42+
43+
#### Fedora (22+)
44+
45+
Скористайтеся наступною командою в консолі:
46+
47+
$ sudo dnf install python3.4
4148

4249

4350
### OS X

0 commit comments

Comments
 (0)