Skip to content

Commit

Permalink
switch from apt-get command to apt
Browse files Browse the repository at this point in the history
changed for all languages
  • Loading branch information
sevu committed Mar 8, 2018
1 parent 9aa5e5e commit 26561f8
Show file tree
Hide file tree
Showing 45 changed files with 61 additions and 61 deletions.
2 changes: 1 addition & 1 deletion cs/deploy/install_git.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Stáhni Git z [git-scm.com](https://git-scm.com/) a postupuj podle pokynů.
Pokud ho již nemáš nainstalovaný, git měl by být k dispozici pomocí Správce balíčků, zkus:

```
sudo apt-get install git
sudo apt install git
# or
sudo yum install git
# or
Expand Down
2 changes: 1 addition & 1 deletion cs/django_installation/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Vytvoření `virtualenv` na Linux a OS X je stejně jednoduché - spusť`python3
>
> Chceš-li se tomuto vyhnout, použij tento příkaz `virtualenv`.
>
> ~/djangogirls$ sudo apt-get install python-virtualenv
> ~/djangogirls$ sudo apt install python-virtualenv
> ~/djangogirls$ virtualenv --python=python3.4 myvenv
>
Expand Down
2 changes: 1 addition & 1 deletion cs/python_installation/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Pokud Python nemáš nainstalovaný nebo pokud chceš nainstalovat jinou verzi,
Použij tento příkaz v konzoli:

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

#### Fedora
Expand Down
2 changes: 1 addition & 1 deletion de/deploy/install_git.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Git von [git-scm.com](http://git-scm.com/) herunterladen und dann den Anweisunge
Falls es noch nicht installiert sein sollte, sollte git als Paket im Paketmanager enthalten sein. Versuche je nach Distribution:

```bash
sudo apt-get install git
sudo apt install git
```
# oder
```bash
Expand Down
2 changes: 1 addition & 1 deletion de/django_installation/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Eine `virtualenv` auf Linux oder macOS X anzulegen, heißt lediglich `python3 -m
>
> Das zu umgehen, kannst du den `virtualenv`-Befehl verwenden.
>```bash
>~/djangogirls$ sudo apt-get install python-virtualenv
>~/djangogirls$ sudo apt install python-virtualenv
>~/djangogirls$ virtualenv --python=python3.4 myvenv
>```
Expand Down
2 changes: 1 addition & 1 deletion de/python_installation/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Wenn Python bei dir nicht installiert ist, oder du eine andere Version willst, k
Gib diesen Befehl in die Konsole ein:

```bash
$ sudo apt-get install python3.5
$ sudo apt install python3.5
```

#### Fedora (bis zu 21)
Expand Down
2 changes: 1 addition & 1 deletion en/deploy/install_git.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ data-collapse=true ces-->

{% filename %}command-line{% endfilename %}
```bash
$ sudo apt-get install git
$ sudo apt install git
```

<!--endsec-->
Expand Down
6 changes: 3 additions & 3 deletions en/django_installation/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,14 @@ $ python3 -m venv myvenv
>{% filename %}command-line{% endfilename %}
>```
>The virtual environment was not created successfully because ensurepip is not available. On Debian/Ubuntu systems, you need to install the python3-venv package using the following command.
> apt-get install python3-venv
> apt install python3-venv
>You may need to use sudo with that command. After installing the python3-venv package, recreate your virtual environment.
>```
>
> In this case, follow the instructions above and install the `python3-venv` package:
>{% filename %}command-line{% endfilename %}
>```
>$ sudo apt-get install python3-venv
>$ sudo apt install python3-venv
>```
> __NOTE:__ On some versions of Debian/Ubuntu initiating the virtual environment like this currently gives the following error:
Expand All @@ -84,7 +84,7 @@ $ python3 -m venv myvenv
>{% filename %}command-line{% endfilename %}
>```
>$ sudo apt-get install python-virtualenv
>$ sudo apt install python-virtualenv
>$ virtualenv --python=python3.6 myvenv
>```
Expand Down
2 changes: 1 addition & 1 deletion en/python_installation/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Type this command into your console:

{% filename %}command-line{% endfilename %}
```
$ sudo apt-get install python3.6
$ sudo apt install python3.6
```

<!--endsec-->
Expand Down
2 changes: 1 addition & 1 deletion es/deploy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Descarga Git de [git-scm.com][3] y sigue las instrucciones.

Si no lo tienes ya instalado, git debería estar disponible a través del administrador de paquetes, prueba con:

sudo apt-get install git
sudo apt install git
# o
sudo yum install git

Expand Down
2 changes: 1 addition & 1 deletion es/django_installation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Crear un `virtualenv` en Linux y OS X es tan simple como ejecutar `python3 -m ve
>
> Para evitar esto, utiliza directamente el comando `virtualenv`.
>
> ~/djangogirls$ sudo apt-get install python-virtualenv
> ~/djangogirls$ sudo apt install python-virtualenv
> ~/djangogirls$ virtualenv --python=python3.4 myvenv
>
Expand Down
2 changes: 1 addition & 1 deletion es/python_installation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Si no tienes Python instalado o si quieres una versión diferente, puedes instal

Tipea este comando en tu consola:

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


#### Fedora
Expand Down
2 changes: 1 addition & 1 deletion fr/deploy/install_git.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Vous pouvez télécharger Git sur [git-scm.com](https://git-scm.com/). Pour le r

Git est probablement déjà installé mais, si ce n'est pas le cas, voici les instructions à suivre :

sudo apt-get install git
sudo apt install git
# ou
sudo yum install git
# ou
Expand Down
2 changes: 1 addition & 1 deletion fr/django_installation/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Pour créer un `virtualenv` sous Linux ou OS X, tapez simplement la commande `py
>
> Pour résoudre ce problème, utilisez plutôt la commande `virtualenv`.
>
> ~/djangogirls$ sudo apt-get install python-virtualenv
> ~/djangogirls$ sudo apt install python-virtualenv
> ~/djangogirls$ virtualenv --python=python3.4 myvenv
>
Expand Down
2 changes: 1 addition & 1 deletion fr/python_installation/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Si Python n'est pas installé ou que vous avez une version différente, vous pou

Tapez cette commande dans votre terminal :

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


#### Fedora
Expand Down
2 changes: 1 addition & 1 deletion hu/deploy/install_git.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ data-collapse=true ces-->

{% filename %}parancssor{% endfilename %}
```bash
$ sudo apt-get install git
$ sudo apt install git
```

<!--endsec-->
Expand Down
6 changes: 3 additions & 3 deletions hu/django_installation/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@ A `myvenv` a`virtualenv`-ed neve. Más nevet is használhatsz, de maradj a kisbe
>{% filename %}parancssor{% endfilename %}
>```
>The virtual environment was not created successfully because ensurepip is not available. On Debian/Ubuntu systems, you need to install the python3-venv package using the following command.
> apt-get install python3-venv
> apt install python3-venv
>You may need to use sudo with that command. After installing the python3-venv package, recreate your virtual environment.
>```
>
> Ebben az esetben a fenti leírást követve telepítsd a `python3-venv` csomagot:
>{% filename %}parancssor{% endfilename %}
>```
>$ sudo apt-get install python3-venv
>$ sudo apt install python3-venv
>```
> **MEGJEGYZÉS:** A virtuális környezetet létrehozó parancs Ubuntu 14.04 alatt ezt a hibát adja:
Expand All @@ -67,7 +67,7 @@ A `myvenv` a`virtualenv`-ed neve. Más nevet is használhatsz, de maradj a kisbe
>
> Hogy ezt elkerüld, használd a `virtualenv` parancsot.
>
> ~/djangogirls$ sudo apt-get install python-virtualenv
> ~/djangogirls$ sudo apt install python-virtualenv
> ~/djangogirls$ virtualenv --python=python3.6 myvenv
>
Expand Down
2 changes: 1 addition & 1 deletion hu/python_installation/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ data-collapse=true ces-->

Írd be az alábbi parancsot a konzolba:

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

<!--endsec-->

Expand Down
2 changes: 1 addition & 1 deletion it/deploy/install_git.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Scarica Git da [git-scm.com](https://git-scm.com/) e segui le istruzioni.

Se non è già installato, git dovrebbe essere disponibile tramite il gestore di pacchetti, prova a cercare:

sudo apt-get install git
sudo apt install git
# oppure
sudo yum install git
# oppure
Expand Down
2 changes: 1 addition & 1 deletion it/django_installation/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Creare un `virtualenv` su Linux e OS X è semplice, basta digitare: `python3 -m
>
> Per aggirare il problema utilizza, invece del precedente, il comando `virtualenv`.
>
> ~/djangogirls$ sudo apt-get install python-virtualenv
> ~/djangogirls$ sudo apt install python-virtualenv
> ~/djangogirls$ virtualenv --python=python3.4 myvenv
>
Expand Down
2 changes: 1 addition & 1 deletion it/python_installation/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Se non hai Python installato o se vuoi una versione diversa, puoi installarla co

Digita questo comando nella tua console:

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


#### Fedora
Expand Down
2 changes: 1 addition & 1 deletion ko/deploy/install_git.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ data-collapse=true ces-->

{% filename %}command-line{% endfilename %}
```bash
$ sudo apt-get install git
$ sudo apt install git
```

<!--endsec-->
Expand Down
6 changes: 3 additions & 3 deletions ko/django_installation/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,14 @@ $ python3 -m venv myvenv
{% filename %}command-line{% endfilename %}
```
The virtual environment was not created successfully because ensurepip is not available. On Debian/Ubuntu systems, you need to install the python3-venv package using the following command.
apt-get install python3-venv
apt install python3-venv
You may need to use sudo with that command. After installing the python3-venv package, recreate your virtual environment.
```

이 경우, 위의 지시에 따라 `python3-venv` 패키지를 설치하세요. :
{% filename %}command-line{% endfilename %}
```
$ sudo apt-get install python3-venv
$ sudo apt install python3-venv
```

> **Note** Debian/Ubuntu의 일부 버전에서 이와 같이 가상 환경을 초기화하면 현재 다음과 같은 오류가 발생합니다. :
Expand All @@ -75,7 +75,7 @@ Error: Command '['/home/eddie/Slask/tmp/venv/bin/python3', '-Im', 'ensurepip', '

{% filename %}command-line{% endfilename %}
```
$ sudo apt-get install python-virtualenv
$ sudo apt install python-virtualenv
$ virtualenv --python=python3.6 myvenv
```

Expand Down
2 changes: 1 addition & 1 deletion ko/python_installation/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ data-collapse=true ces-->

{% filename %}command-line{% endfilename %}
```
$ sudo apt-get install python3.6
$ sudo apt install python3.6
```

<!--endsec-->
Expand Down
2 changes: 1 addition & 1 deletion pl/deploy/install_git.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ data-collapse=true ces-->
{% filename %}command-line{% endfilename %}

```bash
$ sudo apt-get install git
$ sudo apt install git
```

<!--endsec-->
Expand Down
6 changes: 3 additions & 3 deletions pl/django_installation/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@ Możemy stworzyć `virtualenv`'a w Linuksie i OS X poprzez użycie jedynie polec
> {% filename %}command-line{% endfilename %}
>
> The virtual environment was not created successfully because ensurepip is not available. On Debian/Ubuntu systems, you need to install the python3-venv package using the following command.
> apt-get install python3-venv
> apt install python3-venv
> You may need to use sudo with that command. After installing the python3-venv package, recreate your virtual environment.
>
>
> W tym przypadku, wykonaj powyższe instrukcje i zainstaluj pakiet `python3-venv`: {% filename %}command-line{% endfilename %}
>
> $ sudo apt-get install python3-venv
> $ sudo apt install python3-venv
>
>
> **UWAGA:** W niektórych wersjach Debiana/Ubuntu inicjowanie środowiska wirtualnego w ten sposób daje obecnie następujący błąd:
Expand All @@ -78,7 +78,7 @@ Możemy stworzyć `virtualenv`'a w Linuksie i OS X poprzez użycie jedynie polec
>
> {% filename %}command-line{% endfilename %}
>
> $ sudo apt-get install python-virtualenv
> $ sudo apt install python-virtualenv
> $ virtualenv --python=python3.6 myvenv
>
>
Expand Down
2 changes: 1 addition & 1 deletion pl/python_installation/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Wpisz w konsoli poniższe polecenie:

{% filename %}command-line{% endfilename %}

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


<!--endsec-->
Expand Down
2 changes: 1 addition & 1 deletion pt/deploy/install_git.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ data-collapse=true ces-->

{% filename %}command-line{% endfilename %}
```bash
$ sudo apt-get install git
$ sudo apt install git
```

<!--endsec-->
Expand Down
6 changes: 3 additions & 3 deletions pt/django_installation/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,14 @@ $ python3 -m venv myvenv
> {% filename %}command-line{% endfilename %}
>```
> The virtual environment was not created successfully because ensurepip is not available. On Debian/Ubuntu systems, you need to install the python3-venv package using the following command.
> apt-get install python3-venv
> apt install python3-venv
> You may need to use sudo with that command. After installing the python3-venv package, recreate your virtual environment.
>```
>
> Nesse caso, siga as instruções acima e instale o pacote `python3-venv`:
>{% filename %}command-line{% endfilename %}
>```
>$ sudo apt-get install python3-venv
>$ sudo apt install python3-venv
>```
> __NOTA:__ Em algumas versões do Debian/Ubuntu inicializar o ambiente virtual dessa forma retorna o seguinte erro:
Expand All @@ -79,7 +79,7 @@ $ python3 -m venv myvenv
>{% filename %}command-line{% endfilename %}
>```
>$ sudo apt-get install python-virtualenv
>$ sudo apt install python-virtualenv
>$ virtualenv --python=python3.5 myvenv
>```
Expand Down
2 changes: 1 addition & 1 deletion pt/python_installation/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Use esse comando em seu console:

{% filename %}command-line{% endfilename %}
```
$ sudo apt-get install python3.5
$ sudo apt install python3.5
```

<!--endsec-->
Expand Down
2 changes: 1 addition & 1 deletion ru/deploy/install_git.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ data-collapse=true ces-->

{% filename %}command-line{% endfilename %}
```bash
$ sudo apt-get install git
$ sudo apt install git
```

<!--endsec-->
Expand Down
6 changes: 3 additions & 3 deletions ru/django_installation/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,14 @@ $ python3 -m venv myvenv
>{% filename %}command-line{% endfilename %}
>```
>The virtual environment was not created successfully because ensurepip is not available. On Debian/Ubuntu systems, you need to install the python3-venv package using the following command.
> apt-get install python3-venv
> apt install python3-venv
>You may need to use sudo with that command. After installing the python3-venv package, recreate your virtual environment.
>```
>
> В таком случае следуй приведённым инструкциям и установи пакет `python3-venv`:
>{% filename %}command-line{% endfilename %}
>```
>$ sudo apt-get install python3-venv
>$ sudo apt install python3-venv
>```
> __Примечание:__ В некоторых версиях of Debian/Ubuntu при таком способе создания виртуального окружения ты можешь получить такую ошибку:
Expand All @@ -79,7 +79,7 @@ $ python3 -m venv myvenv
>{% filename %}command-line{% endfilename %}
>```
>$ sudo apt-get install python-virtualenv
>$ sudo apt install python-virtualenv
>$ virtualenv --python=python3.6 myvenv
>```
Expand Down
2 changes: 1 addition & 1 deletion ru/python_installation/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ data-collapse=true ces-->

{% filename %}command-line{% endfilename %}
```
$ sudo apt-get install python3.6
$ sudo apt install python3.6
```

<!--endsec-->
Expand Down
Loading

0 comments on commit 26561f8

Please sign in to comment.