Resolving package versions... when adding Makie

Hi everyone!!! when i try to
import Pkg
Pkg.add(“Makie”)

It shows me this error, may anyone helpme with this?

Resolving package versions…
Unsatisfiable requirements detected for package PlotUtils [995b91a9]:
PlotUtils [995b91a9] log:
├─possible versions are: [0.5.0-0.5.8, 0.6.0-0.6.5, 1.0.0-1.0.10] or uninstalled
├─restricted by compatibility requirements with Plots [91a5bcdd] to versions: 1.0.0-1.0.10
│ └─Plots [91a5bcdd] log:
│ ├─possible versions are: [0.12.1- … It continues

This usually happens because you have a version of a packing that is not compatible with another package.

For instance, if you look at the Project.toml for Makie.jl you’ll see:

AbstractPlotting = "0.14"
FileIO = "1.1"
GLMakie = "0.1.18"
julia = "1.3"

This tells you specifically which versions the creators have declared compatible. You may have other packages that have different restrictions, thus leading to the unsatisfiable requirements.

You could either find the issue where this happens and see if the developer of one of packages could upgrade their compat section to eliminate the issue you are facing. Alternately, you could create a new Julia environment for the project you will be using Makie with and only add the packages you need (assuming the offending one is not on that list).