September 5, 2025

Julia installation

wget https://julialang-s3.julialang.org/bin/linux/x64/1.11/julia-1.11.6-linux-x86_64.tar.gz
tar -xvzf julia-1.11.6-linux-x86_64.tar.gz
echo 'export PATH="~/julia-1.11.6/bin:$PATH"' >> ~/.bashrc

Install packages on your environment

julia
]
activate .
add something...
or
instantiate

Execute Script

Ctrl + C
include("script.jl")

Resolve in new julia version

julia --project=.

# pkg> in REPL 
(Project) pkg> registry up
(Project) pkg> resolve
# If it wont work, you can discard Manifest, and recreate
(Project) pkg> rm Manifest 
# Or do (user) rm Manifest.toml Project.toml
(Project) pkg> instantiate

The command (Project) pkg> update also works in some projects. I should search the difference from “resolve” command.