I just pull an undergoing project on GitHub and its name is “ProblemReductions.jl”. I tried to run the example given in the directory “example/landscape”. There are Project.toml which clearifies the package that is useful in the example.
Then I jump in to this directory and type:
Julia> julia
Julia>using Pkg
Julia>Pkg.activate(".")
Julia>Pkg.instantiate()
pkg>st
then everything went well, I did:
Julia> include("main.jl")
After a while, REPL complained:
ERROR:LoadError:UndefVarError: `Random` undefined
And the relative code in the main.jl is:
Random.seed!(seed)
What is the problem?