From 86bdf0774eb22f2f8b16fbc58d43cf19792ef557 Mon Sep 17 00:00:00 2001 From: Orestis Malaspinas <orestis.malaspinas@hesge.ch> Date: Tue, 26 Jun 2018 23:54:10 +0200 Subject: [PATCH] added beginning of installation --- installation.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 installation.md diff --git a/installation.md b/installation.md new file mode 100644 index 0000000..3278ebd --- /dev/null +++ b/installation.md @@ -0,0 +1,32 @@ +--- +title: Cours de programmation séquentielle +subtitle: Installation +author: Orestis Malaspinas +sansfont: Sans Serif +--- + +# Rustup + +## Linux ou maxOS + +- Dans un terminal exécuter la commande. + + ~~~~{#mycode .bash .numberLines startFrom="100"} + curl https://sh.rustup.rs -sSf | sh + ~~~~~~~~~~~~~~~~~~~~~~~~~~ + +- Rust nécessite également un éditeur de lien (celui de C fait parfaitement l'affaire). +- Mise à jour + + ```{.bash} + rustup update + ``` + +- Désinstallation + + ```{.bash} + rustup self uninstall + ``` + +## Windows + -- GitLab