diff --git a/cs/deploy/install_git.md b/cs/deploy/install_git.md index 6cc2682b85d..0e9d9d7c282 100755 --- a/cs/deploy/install_git.md +++ b/cs/deploy/install_git.md @@ -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 diff --git a/cs/django_installation/instructions.md b/cs/django_installation/instructions.md index e8d4352485e..a3a34413b65 100755 --- a/cs/django_installation/instructions.md +++ b/cs/django_installation/instructions.md @@ -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 > diff --git a/cs/python_installation/instructions.md b/cs/python_installation/instructions.md index 52466b1d549..8d0e2d0f37b 100755 --- a/cs/python_installation/instructions.md +++ b/cs/python_installation/instructions.md @@ -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 diff --git a/de/deploy/install_git.md b/de/deploy/install_git.md index 3d8a8d77b4c..75872a1c408 100644 --- a/de/deploy/install_git.md +++ b/de/deploy/install_git.md @@ -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 diff --git a/de/django_installation/instructions.md b/de/django_installation/instructions.md index 550aec1493e..863422b91bd 100644 --- a/de/django_installation/instructions.md +++ b/de/django_installation/instructions.md @@ -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 >``` diff --git a/de/python_installation/instructions.md b/de/python_installation/instructions.md index 11b231339cb..acd50b33242 100644 --- a/de/python_installation/instructions.md +++ b/de/python_installation/instructions.md @@ -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) diff --git a/en/deploy/install_git.md b/en/deploy/install_git.md index 3b198524bf6..1d37d4abd86 100644 --- a/en/deploy/install_git.md +++ b/en/deploy/install_git.md @@ -24,7 +24,7 @@ data-collapse=true ces--> {% filename %}command-line{% endfilename %} ```bash -$ sudo apt-get install git +$ sudo apt install git ``` diff --git a/en/django_installation/instructions.md b/en/django_installation/instructions.md index 7e2ccb17cec..92ac305616d 100644 --- a/en/django_installation/instructions.md +++ b/en/django_installation/instructions.md @@ -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: @@ -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 >``` diff --git a/en/python_installation/instructions.md b/en/python_installation/instructions.md index 886e2213753..71ed306153e 100644 --- a/en/python_installation/instructions.md +++ b/en/python_installation/instructions.md @@ -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 ``` diff --git a/es/deploy/README.md b/es/deploy/README.md index b252ebc6b4e..5f60b9c5ef7 100755 --- a/es/deploy/README.md +++ b/es/deploy/README.md @@ -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 diff --git a/es/django_installation/README.md b/es/django_installation/README.md index 51205bb952f..bdd75e27e60 100755 --- a/es/django_installation/README.md +++ b/es/django_installation/README.md @@ -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 > diff --git a/es/python_installation/README.md b/es/python_installation/README.md index ba64077782c..72caf8b6930 100755 --- a/es/python_installation/README.md +++ b/es/python_installation/README.md @@ -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 diff --git a/fr/deploy/install_git.md b/fr/deploy/install_git.md index 2190df46aa8..b7f3fb24cb7 100644 --- a/fr/deploy/install_git.md +++ b/fr/deploy/install_git.md @@ -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 diff --git a/fr/django_installation/instructions.md b/fr/django_installation/instructions.md index 7bc4f86512b..9dd82cc01d2 100644 --- a/fr/django_installation/instructions.md +++ b/fr/django_installation/instructions.md @@ -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 > diff --git a/fr/python_installation/instructions.md b/fr/python_installation/instructions.md index bf25d129da4..b48d6aa5f76 100644 --- a/fr/python_installation/instructions.md +++ b/fr/python_installation/instructions.md @@ -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 diff --git a/hu/deploy/install_git.md b/hu/deploy/install_git.md index 559e12addd0..3e49cfef566 100644 --- a/hu/deploy/install_git.md +++ b/hu/deploy/install_git.md @@ -23,7 +23,7 @@ data-collapse=true ces--> {% filename %}parancssor{% endfilename %} ```bash -$ sudo apt-get install git +$ sudo apt install git ``` diff --git a/hu/django_installation/instructions.md b/hu/django_installation/instructions.md index 508801c78bc..787c0abbd99 100644 --- a/hu/django_installation/instructions.md +++ b/hu/django_installation/instructions.md @@ -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: @@ -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 > diff --git a/hu/python_installation/instructions.md b/hu/python_installation/instructions.md index 0b6425f89e7..709a0e30481 100644 --- a/hu/python_installation/instructions.md +++ b/hu/python_installation/instructions.md @@ -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 diff --git a/it/deploy/install_git.md b/it/deploy/install_git.md index dac44912b60..49724fa264d 100644 --- a/it/deploy/install_git.md +++ b/it/deploy/install_git.md @@ -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 diff --git a/it/django_installation/instructions.md b/it/django_installation/instructions.md index 931be14224b..ea568da7608 100644 --- a/it/django_installation/instructions.md +++ b/it/django_installation/instructions.md @@ -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 > diff --git a/it/python_installation/instructions.md b/it/python_installation/instructions.md index aa923d93268..12ea762f4d6 100644 --- a/it/python_installation/instructions.md +++ b/it/python_installation/instructions.md @@ -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 diff --git a/ko/deploy/install_git.md b/ko/deploy/install_git.md index 4f900b2f6f4..04dae761811 100755 --- a/ko/deploy/install_git.md +++ b/ko/deploy/install_git.md @@ -24,7 +24,7 @@ data-collapse=true ces--> {% filename %}command-line{% endfilename %} ```bash -$ sudo apt-get install git +$ sudo apt install git ``` diff --git a/ko/django_installation/instructions.md b/ko/django_installation/instructions.md index c79df5ced95..a4449911af9 100755 --- a/ko/django_installation/instructions.md +++ b/ko/django_installation/instructions.md @@ -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의 일부 버전에서 이와 같이 가상 환경을 초기화하면 현재 다음과 같은 오류가 발생합니다. : @@ -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 ``` diff --git a/ko/python_installation/instructions.md b/ko/python_installation/instructions.md index 85fb14db560..cb02a609936 100755 --- a/ko/python_installation/instructions.md +++ b/ko/python_installation/instructions.md @@ -64,7 +64,7 @@ data-collapse=true ces--> {% filename %}command-line{% endfilename %} ``` -$ sudo apt-get install python3.6 +$ sudo apt install python3.6 ``` diff --git a/pl/deploy/install_git.md b/pl/deploy/install_git.md index 24887481fc8..f9a59e3dd53 100755 --- a/pl/deploy/install_git.md +++ b/pl/deploy/install_git.md @@ -24,7 +24,7 @@ data-collapse=true ces--> {% filename %}command-line{% endfilename %} ```bash -$ sudo apt-get install git +$ sudo apt install git ``` diff --git a/pl/django_installation/instructions.md b/pl/django_installation/instructions.md index 29124cb54e9..0af808258fd 100755 --- a/pl/django_installation/instructions.md +++ b/pl/django_installation/instructions.md @@ -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: @@ -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 > > diff --git a/pl/python_installation/instructions.md b/pl/python_installation/instructions.md index 16cfaa8e2ac..4c9416f08f4 100755 --- a/pl/python_installation/instructions.md +++ b/pl/python_installation/instructions.md @@ -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 diff --git a/pt/deploy/install_git.md b/pt/deploy/install_git.md index fc8b553b2b7..a4027e5594d 100644 --- a/pt/deploy/install_git.md +++ b/pt/deploy/install_git.md @@ -29,7 +29,7 @@ data-collapse=true ces--> {% filename %}command-line{% endfilename %} ```bash -$ sudo apt-get install git +$ sudo apt install git ``` diff --git a/pt/django_installation/instructions.md b/pt/django_installation/instructions.md index 2feaadf3377..96762740a5a 100644 --- a/pt/django_installation/instructions.md +++ b/pt/django_installation/instructions.md @@ -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: @@ -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 >``` diff --git a/pt/python_installation/instructions.md b/pt/python_installation/instructions.md index 4d607c337b3..ac19b52c198 100644 --- a/pt/python_installation/instructions.md +++ b/pt/python_installation/instructions.md @@ -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 ``` diff --git a/ru/deploy/install_git.md b/ru/deploy/install_git.md index 9382ebdcb11..e3a06cc9a86 100755 --- a/ru/deploy/install_git.md +++ b/ru/deploy/install_git.md @@ -24,7 +24,7 @@ data-collapse=true ces--> {% filename %}command-line{% endfilename %} ```bash -$ sudo apt-get install git +$ sudo apt install git ``` diff --git a/ru/django_installation/instructions.md b/ru/django_installation/instructions.md index 1e03835b329..166c321d825 100755 --- a/ru/django_installation/instructions.md +++ b/ru/django_installation/instructions.md @@ -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 при таком способе создания виртуального окружения ты можешь получить такую ошибку: @@ -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 >``` diff --git a/ru/python_installation/instructions.md b/ru/python_installation/instructions.md index 687e9faaada..8a4358d3df1 100755 --- a/ru/python_installation/instructions.md +++ b/ru/python_installation/instructions.md @@ -62,7 +62,7 @@ data-collapse=true ces--> {% filename %}command-line{% endfilename %} ``` -$ sudo apt-get install python3.6 +$ sudo apt install python3.6 ``` diff --git a/sk/deploy/install_git.md b/sk/deploy/install_git.md index 1fe63225a6c..dd1ef86f43a 100755 --- a/sk/deploy/install_git.md +++ b/sk/deploy/install_git.md @@ -24,7 +24,7 @@ data-collapse=true ces--> {% filename %}command-line{% endfilename %} ```bash -$ sudo apt-get install git +$ sudo apt install git ``` diff --git a/sk/django_installation/instructions.md b/sk/django_installation/instructions.md index 75079a9b56a..747c181f732 100755 --- a/sk/django_installation/instructions.md +++ b/sk/django_installation/instructions.md @@ -58,13 +58,13 @@ Vytvoriť `virtualenv` na Linuxe a OS X vyžaduje iba jednoduché spustenie `pyt > {% 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. > > > V tomto prípade postupuj podľa pokynov uvedených vyššie a nainštaluj si balík `python3-venv`: {% filename %}command-line{% endfilename %} > -> $ sudo apt-get install python3-venv +> $ sudo apt install python3-venv > > > **POZNÁMKA:** V niektorých verziách Debian/Ubuntu inicializovanie virtuálneho prostredia týmto spôsobom vráti nasledovnú chybu: @@ -78,7 +78,7 @@ Vytvoriť `virtualenv` na Linuxe a OS X vyžaduje iba jednoduché spustenie `pyt > > {% filename %}command-line{% endfilename %} > -> $ sudo apt-get install python-virtualenv +> $ sudo apt install python-virtualenv > $ virtualenv --python=python3.6 myvenv > > diff --git a/sk/python_installation/instructions.md b/sk/python_installation/instructions.md index ba3ea0f02b5..2049ad33084 100755 --- a/sk/python_installation/instructions.md +++ b/sk/python_installation/instructions.md @@ -60,7 +60,7 @@ Zadaj do konzoly tento príkaz: {% filename %}command-line{% endfilename %} - $ sudo apt-get install python3.6 + $ sudo apt install python3.6 diff --git a/tr/deploy/install_git.md b/tr/deploy/install_git.md index 84417d178ca..1bf7a6c2056 100644 --- a/tr/deploy/install_git.md +++ b/tr/deploy/install_git.md @@ -24,7 +24,7 @@ data-collapse=true ces--> {% filename %}komut-satırı{% endfilename %} ```bash -$ sudo apt-get install git +$ sudo apt install git ``` diff --git a/tr/django_installation/instructions.md b/tr/django_installation/instructions.md index 1dbe8ff9999..89cf770ae73 100644 --- a/tr/django_installation/instructions.md +++ b/tr/django_installation/instructions.md @@ -58,13 +58,13 @@ Burada `myvenv` sizin `virtualenv`'inizin ismi. Dilerseniz istediğiniz herhangi > {% filename %}komut-satırı{% endfilename %} > > The virtual environment was not created successfully because ensurepip is not available. Debian/Ubuntu sistemlerinde, python3-venv paketini aşağıdaki komutu kullanarak yüklemeniz gerekiyor. -> 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. > > > Bu durumda,yukarıdaki yönergeleri izleyin ve `python3-venv` paketini yükleyin: > -> $ sudo apt-get install python3-venv +> $ sudo apt install python3-venv > > > Bu Şekilde Debian/Ubuntu ' nun bazı sürümlerinde sanal ortamı başlatırken o anda aşağıdaki hatayı alabilirsiniz : @@ -78,7 +78,7 @@ Burada `myvenv` sizin `virtualenv`'inizin ismi. Dilerseniz istediğiniz herhangi > > {% filename %}komut-satırı{% endfilename %} > -> $ sudo apt-get install python-virtualenv +> $ sudo apt install python-virtualenv > $ virtualenv --python=python3.6 myvenv > > diff --git a/tr/python_installation/instructions.md b/tr/python_installation/instructions.md index f5bb34db0ca..4a0b6d62828 100644 --- a/tr/python_installation/instructions.md +++ b/tr/python_installation/instructions.md @@ -60,7 +60,7 @@ Terminale bu komutu girin: {% filename %}komut satırı{% endfilename %} - $ sudo apt-get install python3.6 + $ sudo apt install python3.6 diff --git a/uk/deploy/install_git.md b/uk/deploy/install_git.md index 8420e591bee..cd11f616a69 100644 --- a/uk/deploy/install_git.md +++ b/uk/deploy/install_git.md @@ -15,7 +15,7 @@ Git можна завантажити з [git-scm.com](https://git-scm.com/). В #### Debian або Ubuntu - $ sudo apt-get install git + $ sudo apt install git #### Fedora diff --git a/uk/django_installation/instructions.md b/uk/django_installation/instructions.md index c9ea92a53cc..a00cfbf684f 100644 --- a/uk/django_installation/instructions.md +++ b/uk/django_installation/instructions.md @@ -46,7 +46,7 @@ > Щоб обійти цю проблему, використовуйте натомість команду `virtualenv`. -> $ sudo apt-get install python-virtualenv +> $ sudo apt install python-virtualenv > $ virtualenv --python=python3.4 myvenv diff --git a/uk/python_installation/instructions.md b/uk/python_installation/instructions.md index 37ff8fbb794..7a5fdad6cb5 100644 --- a/uk/python_installation/instructions.md +++ b/uk/python_installation/instructions.md @@ -26,7 +26,7 @@ Python для Windows можна завантажити з сайту https://ww Наберіть наступну команду в консолі: - $ sudo apt-get install python3.4 + $ sudo apt install python3.4 #### Fedora diff --git a/zh/deploy/install_git.md b/zh/deploy/install_git.md index 5751a997d5f..4b0841daa08 100755 --- a/zh/deploy/install_git.md +++ b/zh/deploy/install_git.md @@ -10,7 +10,7 @@ 如果git还没有被安装的话,你可以从你的软件包管理器中下载git, 请试试下面命令: - sudo apt-get install git + sudo apt install git # or sudo yum install git # or diff --git a/zh/django_installation/instructions.md b/zh/django_installation/instructions.md index cdf10a7d70e..2fa34f4164d 100755 --- a/zh/django_installation/instructions.md +++ b/zh/django_installation/instructions.md @@ -46,7 +46,7 @@ > > 为了解决这个问题,请使用 `virtualenv` 命令。 > -> ~/djangogirls$ sudo apt-get install python-virtualenv +> ~/djangogirls$ sudo apt install python-virtualenv > ~/djangogirls$ virtualenv --python=python3.4 myvenv > diff --git a/zh/python_installation/instructions.md b/zh/python_installation/instructions.md index 1bd7e943802..1099881005d 100755 --- a/zh/python_installation/instructions.md +++ b/zh/python_installation/instructions.md @@ -24,7 +24,7 @@ Django 是用 Python 写的。 在 Django 中,我们需要使用 Python 语言 在控制台中键入此命令: - $ sudo apt-get install python3.4 + $ sudo apt install python3.4 #### Fedora