Hi, Iβm a new user and I have had problems with scripts that use the command Point3f, Point2f and others to generate plots. Well, apparently, the problem is caused by errors in packages installation. I uninstalled the Julia, reinstall, and the problem continue.
So, I ran the update all packages after the Julia installation (Windows 10 64bits as admin). And I discoved the problem: the package Meshes.
Julia version: 1.7.3
julia> Pkg.update()
Updating registry at `C:\Users\EvSchulz\.julia\registries\General.toml`
Installed GR_jll ββββββββββ v0.66.0+0
Installed RecipesPipeline β v0.6.1
Installed Plots βββββββββββ v1.31.2
Installed GR ββββββββββββββ v0.66.0
Downloaded artifact: GR
Updating `C:\Users\EvSchulz\.julia\environments\v1.7\Project.toml`
[91a5bcdd] β Plots v1.31.1 β v1.31.2
Updating `C:\Users\EvSchulz\.julia\environments\v1.7\Manifest.toml`
[28b8d3ca] β GR v0.64.4 β v0.66.0
[91a5bcdd] β Plots v1.31.1 β v1.31.2
[01d81517] β RecipesPipeline v0.5.2 β v0.6.1
[05181044] β RelocatableFolders v0.1.3 β v0.3.0
[d2c73de3] β GR_jll v0.65.1+0 β v0.66.0+0
Building GR β `C:\Users\EvSchulz\.julia\scratchspaces\44cfe95a-1eb2-52ea-b672-e2afdf69b78f\037a1ca47e8a5989cc07d19729567bb71bfabd0c\build.log`
Precompiling project...
5 dependencies successfully precompiled in 47 seconds (259 already precompiled)
1 dependency errored. To see a full report either run `import Pkg; Pkg.precompile()` or load the package
Well, 1 dependency error occurred with package βGRβ. After, I ran Pkg.precompile(), to discover the error:
julia> Pkg.precompile()
0 dependencies successfully precompiled in 2 seconds (264 already precompiled)
ERROR: The following 1 direct dependency failed to precompile:
Meshes [eacbb407-ea5a-433e-ab97-5258b1ca43fa]
Error: Missing source file for Meshes [eacbb407-ea5a-433e-ab97-5258b1ca43fa
Stacktrace:
[1] pkgerror(msg::String)
@ Pkg.Types C:\Users\EvSchulz\AppData\Local\Programs\Julia-1.7.3\share\julia\stdlib\v1.7\Pkg\src\Types.jl:68
[2] precompile(ctx::Pkg.Types.Context; internal_call::Bool, strict::Bool, warn_loaded::Bool, already_instantiated::Bool, kwargs::Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}})
@ Pkg.API C:\Users\EvSchulz\AppData\Local\Programs\Julia-1.7.3\share\julia\stdlib\v1.7\Pkg\src\API.jl:1362
[3] precompile
@ C:\Users\EvSchulz\AppData\Local\Programs\Julia-1.7.3\share\julia\stdlib\v1.7\Pkg\src\API.jl:1013 [inlined]
[4] #precompile#220
@ C:\Users\EvSchulz\AppData\Local\Programs\Julia-1.7.3\share\julia\stdlib\v1.7\Pkg\src\API.jl:1011 [inlined]
[5] precompile()
@ Pkg.API C:\Users\EvSchulz\AppData\Local\Programs\Julia-1.7.3\share\julia\stdlib\v1.7\Pkg\src\API.jl:1011
[6] top-level scope
@ REPL[4]:1
Well, here is the problem: Meshes [eacbb407-ea5a-433e-ab97-5258b1ca43fa]
Iβm tried to install the package:
Pkg.add("Meshes")
Resolving package versions...
No Changes to `C:\Users\EvSchulz\.julia\environments\v1.7\Project.toml`
No Changes to `C:\Users\EvSchulz\.julia\environments\v1.7\Manifest.toml`
0 dependencies successfully precompiled in 2 seconds (264 already precompiled)
1 dependency errored. To see a full report either run `import Pkg; Pkg.precompile()` or load the package
I do not know howI can do to solve it.