1
0
Fork 0
mirror of https://gitlab.rlp.net/mobitar/julia_course.git synced 2024-11-16 13:28:10 +00:00

Update README

This commit is contained in:
Mo8it 2022-03-29 00:28:12 +02:00
parent c8b0d4e1a4
commit 0c5ddc0242

View file

@ -5,22 +5,43 @@
== Installation == Installation
First, download Julia from the official website: https://julialang.org/downloads/. First, download Julia from the official website: https://julialang.org/downloads/.
If you are on Windows, follow the instructions of the installer. === Linux
You can either download the binary from the website above or install Julia with a package manager if it provides an up to date package (usually named `julia`).
In case you download the binary, add it to your `PATH`. The easiest way would be to move the binary to `~/.local/bin`.
Linux users can either download the binary from the website above or install Julia with a package manager if it provides an up to date package (usually named `julia`). === Windows
Follow the instructions of the installer and make sure that you choose the option to add Julia to your `PATH`.
== Installing Pluto === macOS
After the installation of Julia, launch Julia to be welcomed by the REPL. Check the installation instructions on the official Julia website.
Now, https://github.com/fonsp/Pluto.jl[Pluto] has to be installed to be able to view, edit and run the notebooks of this course. == Running Pluto for the first time
Clone the repository to get the course files.
Then `cd` into the repository directory.
Now, launch Julia to be welcomed by the REPL.
https://github.com/fonsp/Pluto.jl[Pluto] has to be installed to be able to view, edit and run the notebooks of this course.
In the REPL, press `]`. This will cause the prompt to change to a one ending with `pkg>`. Now run the following: In the REPL, press `]`. This will cause the prompt to change to a one ending with `pkg>`. Now run the following:
[source] [source]
---- ----
add Pluto activate .
---- ----
This will activate the environment of the Julia course. This environment includes only the Pluto package. Your prompt should now change from something like `(v1.8) pkg>` to `(julia_course) pkg>`. This means that the environment was successfully activated.
Now, run the following:
[source]
----
update
----
This will install the Pluto package (or it will update it if it is already installed).
After the installation is done, press backspace to get back to the normal prompt ending with `julia>`. After the installation is done, press backspace to get back to the normal prompt ending with `julia>`.
Now, run the following: Now, run the following:
@ -32,3 +53,6 @@ Pluto.run()
---- ----
A new tab will open in your browser where you can then open one of the notebooks. A new tab will open in your browser where you can then open one of the notebooks.
== Running Pluto after the first time
If you want to run Pluto and see the notebooks after the first time, you should follow all the instructions in the section above except cloing the repository because you already have the notebooks.