I used to use
begin
import Pkg
Pkg.activate()
using ForwardDiff, LinearAlgebra,PlutoUI, DelimitedFiles, DynamicalSystems, GLMakie, Plots, OrdinaryDiffEq, ProgressMeter; plotly();
end
to import locally installed packages, after a force shutdown I reopened the environment to
see pluto is warning me
ArgumentError: Package ForwardDiff not found in current path.
- Run `import Pkg; Pkg.add("ForwardDiff")` to install the ForwardDiff package.
but I know these are installed in the path because I can work on REPL,
so
running
Base.load_path()
after that import
"/home/hisacro/packages/julias/julia-1.9/share/julia/stdlib/v1.9"
in the repl my
Base.load_path()
"/home/hisacro/packages/julias/julia-1.9/share/julia/stdlib/v1.9"
"/home/hisacro/.julia/environments/v1.9/Project.toml"
so seems to be Project.toml is missing, now how to rectify this and make pluto import local packages
found this for repl, JULIA_LOAD_PATH replace load path instead of append to it · Issue #29513 · JuliaLang/julia · GitHub but I cannot wrap this for pluto
any help is much appreciated since it was working fine before with local imports