We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
LOAD_PATH
I have a bunch of pushfirst!(LOAD_PATH, "...") in my startup.jl.
pushfirst!(LOAD_PATH, "...")
startup.jl
This prevents extensions from loading somehow:
julia> using ImageInTerminal julia> using UnicodePlots julia> "ImageInTerminalExt" ∈ map(x -> x.name, collect(keys(Base.loaded_modules))) false
I thought it was fixed by #48352, but it doesn't (this is on julia 1.9.0-beta4 (which has this PR backported)).
julia 1.9.0-beta4
How can we debug extensions loading ?
cc @KristofferC.
The text was updated successfully, but these errors were encountered:
Hum, there seems to be some precompilation related issue here. Clearing the cache and recompiling seems to fix this.
Sorry, something went wrong.
No branches or pull requests
I have a bunch of
pushfirst!(LOAD_PATH, "...")
in mystartup.jl
.This prevents extensions from loading somehow:
I thought it was fixed by #48352, but it doesn't (this is on
julia 1.9.0-beta4
(which has this PR backported)).How can we debug extensions loading ?
cc @KristofferC.
The text was updated successfully, but these errors were encountered: