Grec001
Grec001

Reputation: 1121

Stuck in the endless loop of installing packages in Julia, and can't find solution

It seems I am stuck in an endless loop. When adding one package, it says needing another, and when installing the other, it says need the prebvious one. Installing Julia packages could be one of the most challanging task.

It shall be my 12th re-installation of Julia...

I am with Win10+Julia 1.5.2 + VS Code

endless loop

Upvotes: 4

Views: 906

Answers (1)

MarcMush
MarcMush

Reputation: 1488

Registered packages should be installed without giving the git url, use just the package name:

(@v1.5) pkg> add Juno
   Updating registry at `C:\Users\mittel\.julia\registries\General`
  Resolving package versions...
  Installed Media ─ v0.5.0
  Installed Juno ── v0.8.4
Updating `C:\Users\mittel\.julia\environments\v1.5\Project.toml`
  [e5e0dc1b] + Juno v0.8.4
Updating `C:\Users\mittel\.julia\environments\v1.5\Manifest.toml`
  [e5e0dc1b] + Juno v0.8.4
  [e89f7d12] + Media v0.5.0
  [9abbd945] + Profile

everything should work automatically

if you still have problems, try deleting your Manifest.toml.

If it still does not help delete .julia package repository.

Upvotes: 3

Related Questions