Skip to content

Commit 26561f8

Browse files
committed
switch from apt-get command to apt
changed for all languages
1 parent 9aa5e5e commit 26561f8

45 files changed

Lines changed: 61 additions & 61 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

cs/deploy/install_git.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Stáhni Git z [git-scm.com](https://git-scm.com/) a postupuj podle pokynů.
1111
Pokud ho již nemáš nainstalovaný, git měl by být k dispozici pomocí Správce balíčků, zkus:
1212

1313
```
14-
sudo apt-get install git
14+
sudo apt install git
1515
# or
1616
sudo yum install git
1717
# or

cs/django_installation/instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Vytvoření `virtualenv` na Linux a OS X je stejně jednoduché - spusť`python3
5050
>
5151
> Chceš-li se tomuto vyhnout, použij tento příkaz `virtualenv`.
5252
>
53-
> ~/djangogirls$ sudo apt-get install python-virtualenv
53+
> ~/djangogirls$ sudo apt install python-virtualenv
5454
> ~/djangogirls$ virtualenv --python=python3.4 myvenv
5555
>
5656

cs/python_installation/instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Pokud Python nemáš nainstalovaný nebo pokud chceš nainstalovat jinou verzi,
2626
Použij tento příkaz v konzoli:
2727

2828
```
29-
sudo apt-get install python3.4
29+
sudo apt install python3.4
3030
```
3131

3232
#### Fedora

de/deploy/install_git.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Git von [git-scm.com](http://git-scm.com/) herunterladen und dann den Anweisunge
1111
Falls es noch nicht installiert sein sollte, sollte git als Paket im Paketmanager enthalten sein. Versuche je nach Distribution:
1212

1313
```bash
14-
sudo apt-get install git
14+
sudo apt install git
1515
```
1616
# oder
1717
```bash

de/django_installation/instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Eine `virtualenv` auf Linux oder macOS X anzulegen, heißt lediglich `python3 -m
5858
>
5959
> Das zu umgehen, kannst du den `virtualenv`-Befehl verwenden.
6060
>```bash
61-
>~/djangogirls$ sudo apt-get install python-virtualenv
61+
>~/djangogirls$ sudo apt install python-virtualenv
6262
>~/djangogirls$ virtualenv --python=python3.4 myvenv
6363
>```
6464

de/python_installation/instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Wenn Python bei dir nicht installiert ist, oder du eine andere Version willst, k
4848
Gib diesen Befehl in die Konsole ein:
4949

5050
```bash
51-
$ sudo apt-get install python3.5
51+
$ sudo apt install python3.5
5252
```
5353

5454
#### Fedora (bis zu 21)

en/deploy/install_git.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ data-collapse=true ces-->
2424

2525
{% filename %}command-line{% endfilename %}
2626
```bash
27-
$ sudo apt-get install git
27+
$ sudo apt install git
2828
```
2929

3030
<!--endsec-->

en/django_installation/instructions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,14 @@ $ python3 -m venv myvenv
6363
>{% filename %}command-line{% endfilename %}
6464
>```
6565
>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.
66-
> apt-get install python3-venv
66+
> apt install python3-venv
6767
>You may need to use sudo with that command. After installing the python3-venv package, recreate your virtual environment.
6868
>```
6969
>
7070
> In this case, follow the instructions above and install the `python3-venv` package:
7171
>{% filename %}command-line{% endfilename %}
7272
>```
73-
>$ sudo apt-get install python3-venv
73+
>$ sudo apt install python3-venv
7474
>```
7575
7676
> __NOTE:__ On some versions of Debian/Ubuntu initiating the virtual environment like this currently gives the following error:
@@ -84,7 +84,7 @@ $ python3 -m venv myvenv
8484
8585
>{% filename %}command-line{% endfilename %}
8686
>```
87-
>$ sudo apt-get install python-virtualenv
87+
>$ sudo apt install python-virtualenv
8888
>$ virtualenv --python=python3.6 myvenv
8989
>```
9090

en/python_installation/instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Type this command into your console:
6161

6262
{% filename %}command-line{% endfilename %}
6363
```
64-
$ sudo apt-get install python3.6
64+
$ sudo apt install python3.6
6565
```
6666

6767
<!--endsec-->

es/deploy/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Descarga Git de [git-scm.com][3] y sigue las instrucciones.
3434

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

37-
sudo apt-get install git
37+
sudo apt install git
3838
# o
3939
sudo yum install git
4040

0 commit comments

Comments
 (0)