How do you start julia?

My preferred spell to summon julia is this:

julia --project=. -O0 -t auto

what is yours?

2 Likes

jp which is an alias for julia --startup=no --project=..

1 Like

With jl, which is an alias for ‘bin/run_julia’.

In my projects/ packages, I always have a bash script run_julia that determines the Julia version and parameters depending on the machine, the presence of a custom system image, and the git branch.

1 Like

I have jsn for julia --startup-file=no and j for julia --project

2 Likes

python3 -c "import shutil,subprocess; j=shutil.which('julia'); subprocess.run(['bash','-lc', f'\"{j}\"'])"

3 Likes

jls launch . && jls attach .
I’ve been using juliaserver for the past few months

1 Like

A tab in Windows terminal (have similar for a couple of other Julia versions)

C:\programs\Julia-1.10\bin\julia.exe --threads=auto
2 Likes

alias juliaR=‘julia -Eq -O3 --check-bounds=no --startup-file=no --history-file=no’

Or just julia

1 Like