I tried to install julia HTTP package and got failure artifact 'OpenSSL.
julia> Pkg.add(“HTTP”)
Resolving package versions…
Failure artifact: OpenSSL
Downloading artifact: OpenSSL
System ERROR:
Failure artifact: OpenSSL
ERROR: Unable to automatically download/install artifact ‘OpenSSL’ from sources listed in julia\packages\OpenSSL_jll\IOE5P\Artifacts.toml’.
Sources attempted:
eldee
January 11, 2025, 3:30pm
2
Hi, and welcome to the Julia community!
For these kind of issues it’s always useful to know the Julia version (versioninfo()
) and other packages in the environment (Pkg.status()
).
In particular, did you try installingHTTP.jl
into an empty environment?
Also, have you tried the instructions in
Try this:
Download the OpenSSL artifact using your browser
Extract the contents twice, e.g. using 7-zip
Create a new folder in C:\Users\NAMENAME\.julia\artifacts, and name it 8b5673894767bc39a7d0dfdad9c9c083fd9fe304
Copy the three folders bin, include, and share from the extracted folder to the new folder
Run julia>]add HTTP again
?