I was just trying install FUSE with (On ubuntu 22.04 LTS)
using Pkg
Pkg.Registry.add(RegistrySpec(url="https://github.com/ProjectTorreyPines/FuseRegistry.jl.git"))
Pkg.Registry.add("General")
Pkg.add("FUSE")
I installed FUSE successfully earlier this year, but recently, I failed updating it.
So I tried to remove FUSE and julia and re-install them.
I can install julia successfully with:
curl -fsSL https://install.julialang.org | sh
or
curl -fsSL https://install.julialang.org | sh -s -- --default-channel lts
The issues is:
With julia Version 1.11.6
julia> using Pkg
julia> Pkg.Registry.add(RegistrySpec(url="https://github.com/ProjectTorreyPines/FuseRegistry.jl.git"))
Cloning registry from "https://github.com/ProjectTorreyPines/FuseRegistry.jl.git"
malloc(): invalid size (unsorted)
[1947609] signal 6 (-6): Aborted
in expression starting at REPL[2]:1
Segmentation fault (core dumped)
Then, If I rerun julia
and repeat the installation:
julia> using Pkg
julia> Pkg.Registry.add(RegistrySpec(url="https://github.com/ProjectTorreyPines/FuseRegistry.jl.git"))
┌ Warning: attempting to remove probably stale pidfile
│ path = "/home/user1/.julia/registries/.pid"
â”” @ FileWatching.Pidfile ~/.julia/juliaup/julia-1.11.6+0.x64.linux.gnu/share/julia/stdlib/v1.11/FileWatching/src/pidfile.jl:278
Cloning registry from "https://github.com/ProjectTorreyPines/FuseRegistry.jl.git"
malloc(): invalid size (unsorted)
[21476] signal 6 (-6): Aborted
in expression starting at REPL[2]:1
With the lts Version 1.10.10
julia> using Pkg
julia> Pkg.Registry.add(RegistrySpec(url="https://github.com/ProjectTorreyPines/FuseRegistry.jl.git"))
Cloning registry from "https://github.com/ProjectTorreyPines/FuseRegistry.jl.git"
corrupted double-linked list
[1175685] signal (6.-6): Aborted
in expression starting at REPL[2]:1
Install on macos
I can install julia and then add FUSE packages successfully on MacOS.
I am not sure if there is something wrong with my system settings(Ubuntu 22.04).
Thank you for helping me with this, I’ve been stuck on this issue for some time.