Julia cannot update package?

I solved it by first deleting the old entry in the Manifest.toml

using Pkg
Pkg.rm("Flux")
Pkg.rm("CUDAdrv") # otherwise it has compatibility problems

Then using
Pkg.add(Pkg.PackageSpec(name="Flux", version="0.10.0"))

1 Like