mirror of
https://github.com/ferrous-systems/embedded-trainings-2020.git
synced 2025-02-14 00:15:17 +00:00
installation: add apt instructions alongside pacman instructions
This commit is contained in:
parent
bb89e80961
commit
afc61d24a3
1 changed files with 8 additions and 2 deletions
|
@ -20,8 +20,11 @@ All programming will take place in its `beginner/` and `advanced/` subfolders.
|
||||||
**Linux**: Check your Linux distribution package manager (example below). If it's not there, follow the instructions on [https://code.visualstudio.com/docs/setup/linux](https://code.visualstudio.com/docs/setup/linux).
|
**Linux**: Check your Linux distribution package manager (example below). If it's not there, follow the instructions on [https://code.visualstudio.com/docs/setup/linux](https://code.visualstudio.com/docs/setup/linux).
|
||||||
|
|
||||||
``` console
|
``` console
|
||||||
$ # Arch Linux
|
$ # If you're using Arch Linux
|
||||||
$ sudo pacman -S code
|
$ sudo pacman -S code
|
||||||
|
|
||||||
|
$ # If you're using Ubuntu, search the Software Center or try
|
||||||
|
$ sudo snap install --classic code
|
||||||
```
|
```
|
||||||
|
|
||||||
**macOS**: Go to [https://code.visualstudio.com](https://code.visualstudio.com) and click on "Download for Mac"
|
**macOS**: Go to [https://code.visualstudio.com](https://code.visualstudio.com) and click on "Download for Mac"
|
||||||
|
@ -169,8 +172,11 @@ Installed package `flip-link v0.1.2` (..)
|
||||||
**Linux**: Install `pip` using the package manager; this will also install Python.
|
**Linux**: Install `pip` using the package manager; this will also install Python.
|
||||||
|
|
||||||
``` console
|
``` console
|
||||||
$ # Arch Linux
|
$ # If you're using Arch Linux
|
||||||
$ sudo pacman -S python-pip
|
$ sudo pacman -S python-pip
|
||||||
|
|
||||||
|
$ # If you're using Ubuntu
|
||||||
|
$ sudo apt-get install python3-pip
|
||||||
```
|
```
|
||||||
|
|
||||||
**macOS**:
|
**macOS**:
|
||||||
|
|
Loading…
Reference in a new issue