Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix how to add Julia releases with juliaup #41

Merged
merged 4 commits into from
Jul 12, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions julia-intro/docs/julia-intro-installation.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -138,15 +138,21 @@
"\n",
"to show all the versions of Julia available.\n",
"\n",
"We will work with the newest version on all platforms, 1.9.3 so simply type\n",
"We will work with the newest version on all platforms, 1.10.4 so simply type\n",
michmx marked this conversation as resolved.
Show resolved Hide resolved
"\n",
"```bash\n",
"juliaup install 1.9.3\n",
"juliaup add 1.10.4\n",
michmx marked this conversation as resolved.
Show resolved Hide resolved
"```\n",
"\n",
"to set that up.\n",
"\n",
"The big bonus with `juliaup` is that you can easily have multiple Julia releases installed at once, and Juliaup will let you configure which is your default at any point in time.\n"
"The big bonus with `juliaup` is that you can easily have multiple Julia releases installed at once, and Juliaup will let you configure which is your default at any point in time.\n",
"\n",
"Keep juliaup updated with\n",
"\n",
"```bash\n",
"juliaup self update\n",
"```\n"
]
},
{
Expand Down
Loading