Installing Gurobi pakage and artifact failure

Hi,

I am encountering an issue while trying to install the Gurobi package in Julia. I have an academic license for Gurobi 11. Upon attempting to install the package, I receive the following error:

ERROR: Unable to automatically download/install artifact ‘Gurobi’ from sources listed in ‘C:\Users\frajaein.julia\packages\Gurobi_jll\QGjvN\Artifacts.toml’

Here are the steps I’ve taken so far, all resulting in the same error. My Julia version is 1.10.4, and I have tried with Gurobi versions 11.00 and 11.03:

  1. import Pkg
    Pkg.add(“Gurobi_jll”)
    (I receive the error after that line)

2)import Pkg
Pkg.add(“Gurobi”)
(I receive the error after that line)

3)ENV[“GUROBI_HOME”] = “C:\gurobi1100\win64”
ENV[“GUROBI_JL_USE_GUROBI_JLL”] = “false”
import Pkg
Pkg.add(“Gurobi”)
(I receive the error after that line)

I would appreciate any guidance on resolving this issue.