Questions tagged [julia-pkg]

Package manager for the Julia language.

Pkg is a complete rewrite of Julia's old package manager and was released together with Julia v1.0. Unlike traditional package managers, which install and manage a single global set of packages, Pkg is designed around “environments”: independent sets of packages that can be local to an individual project or shared and selected by name.

22 questions
1
vote
0 answers

Unsatisfiable requirements detected for package Atom on Windows

I am having endless loop (v1.1) pkg> update Atom Updating registry at `C:\Users\Dmitry\.julia\registries\General` Updating git-repo `https://github.com/JuliaRegistries/General.git` Resolving package versions... ERROR: Unsatisfiable requirements…
Dims
  • 47,675
  • 117
  • 331
  • 600
1
vote
0 answers

Julia pkg> add results in "no known versions" errors for "Flux" and "Plots"

I am using Julia version 1.5.1 on a Win10 operating system. Trying to add Plots and Flux results in the errors listed below: (@v1.5) pkg> add Plots Resolving package versions... ERROR: Unsatisfiable requirements detected for package Contour…
1
vote
0 answers

Colorgradient not displaying properly on StatsPlots corrplot

I am trying to obtain a corrplot of some three-dimensional data array using Julia. The StatsPlots documentation includes the following example of a corrplot: M = randn(1000,4) M[:,2] .+= 0.8sqrt.(abs.(M[:,1])) .- 0.5M[:,3] .+ 5 M[:,3] .-=…
Bremsstrahlung
  • 686
  • 1
  • 9
  • 23
1
vote
0 answers

I have Enconter a Error in adding and using packages of julia at compiling it show cannot open the file

julia> using Flux, Plots [ Info: Precompiling Flux [587475ba-b771-5e3f-ad9e-33799f191a9c] ERROR: LoadError: could not open file /root/.julia/packages/NNlib/FAI3o/deps/deps.jl
1
vote
0 answers

pkg ]add command never returns

New to julia. When I try to add a pkg via a julia prompt, the add command never returns to the command prompt in powershell. Same behavior in the default console in the windows julia install. (v1.3) pkg> add Gadfly Cloning default registries into…
Omortis
  • 1,334
  • 19
  • 44
0
votes
2 answers

ERROR: git repository not found at `https://github.com/JuliaRegistries/General.git`

question: I have copied one of my julia project from local pc to a cluster using Linux. When I was trying to run instantiate in Pkg-REPL, ERROR: git repository not found at `https://github.com/JuliaRegistries/General.git occurred. And I have no…
Jason
  • 21
  • 1
-1
votes
0 answers

I can't download julia package within the julia package mode, is a network problem?

My OS is Windows10 and I can't add any julia package, and each time I add the julia package, there happens the same problem as shown in the screenshot. I use Clash for Windows on Windows10, and everything is ok using pip when I use python, but when…
1
2