Unable to automatically download/install artifact

I’m trying to install the LLVM package for the DataScience, course, but I’m getting this error:

ERROR: Unable to automatically download/install artifact 'vegalite_app' from sources listed in 'C:\Users\tales\.julia\packages\Vega\NBNbC\Artifacts.toml'.
Sources attempted:
- https://pkg.julialang.org/artifact/793fcbdad1beb02a41d65f455c195c99cc2f3c1d
    Error: Tree Hash Mismatch!
  Expected git-tree-sha1:   793fcbdad1beb02a41d65f455c195c99cc2f3c1d
  Calculated git-tree-sha1: cd0ec874eaa6316afce4d9c94cdd8570aea6b59b
- https://github.com/queryverse/VegaLiteBuilder/releases/download/v3.4.1/vegaliteassets-3.4.1-x86_64-w64-mingw32.tar.gz
    Error: Tree Hash Mismatch!
  Expected git-tree-sha1:   793fcbdad1beb02a41d65f455c195c99cc2f3c1d
  Calculated git-tree-sha1: a7ffd4d1d6489fb2ba21cdf0d2cd1efcd44cf86c

I’ve already done:

Pkg.gc()
ENV["JULIA_SSL_NO_VERIFY_HOSTS"] = "github.com"
Pkg.update()
Pkg.add("LLVM")

but didnot worked

What is the output of:

using Pkg
Pkg.status()

And the output of:

versioninfo()

?

Issue is Artifact hash mismatch with P4est_jll on Julia v1.10 · Issue #3643 · JuliaLang/Pkg.jl · GitHub

Thanks!!