I just installed Julia 1.2 on my MacBook Pro, but it keeps crashing:
cbieganek@spmacpro90:~$ julia
_
_ _ _(_)_ | Documentation: https://docs.julialang.org
(_) | (_) (_) |
_ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 1.2.0 (2019-08-20)
_/ |\__'_|_|_|\__'_| | Official https://julialang.org/ release
|__/ |
julia> VERSION
fatal: error thrown and no exception handler available.
ReadOnlyMemoryError()
_platform_memmove$VARIANT$Haswell at /usr/lib/system/libsystem_platform.dylib (unknown line)
I installed by using the .dmg file (i.e. dragging the Julia-1.2.app into Applications), and then I created a symlink in /usr/local/bin
:
sudo ln -s /Applications/Julia-1.2.app/Contents/Resources/julia/bin/julia /usr/local/bin/julia
This is the exact same procedure that I used to install Julia 1.1 with no issues. Does anyone have any idea what might be causing this?
EDIT: I actually ran rm /usr/local/bin/julia
before I created the new symlink to the Julia 1.2 binary, so that’s not the problem.