Could you please help me to understand the Packages dependencies using. For example, I installed the GLMakie package:
Updating `C:\Users\aleck\.julia\environments\v1.5\Project.toml`
[e9467ef8] + GLMakie v0.1.23
Updating `C:\Users\aleck\.julia\environments\v1.5\Manifest.toml`
...
[5789e2e9] + FileIO v1.4.5
...
I suppose that the FileIO
packages was installed as a dependency for GLMakie
. However I cannot use this package
using FileIO
julia> using FileIO
ERROR: ArgumentError: Package FileIO not found in current path:
- Run `import Pkg; Pkg.add("FileIO")` to install the FileIO package.
I can install FileIO
. But will it be duplication of the FileIO
from GLMakie
?