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
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 2 additions & 0 deletions .github/workflows/jupyterbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ jobs:

- name: Set up Julia
uses: julia-actions/setup-julia@v1
with:
version: '1.9'

- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@v1
Expand Down
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 latest `release` version on all platforms (1.9 as of writing) so simply type\n",
"\n",
"```bash\n",
"juliaup install 1.9.3\n",
"juliaup add release\n",
"```\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