I want to use Julia 0.6 with latest version of Atom/Juno. However, there is a below error during installation.
Starting Julia…
INFO: Precompiling module Atom.
ERROR: LoadError: HttpParser not properly installed. Please run
Pkg.build(“HttpParser”)
Stacktrace:
[1] error(::String, ::String, ::Vararg{String,N} where N) at .\error.jl:30
[2] include_from_node1(::String) at .\loading.jl:576
[3] include(::String) at .\sysimg.jl:14
[4] anonymous at .<missing>:2
while loading C:\Users\Bill.julia\v0.6\HttpParser\src\HttpParser.jl, in expression starting on line 9
ERROR: LoadError: LoadError: Failed to precompile HttpParser to C:\Users\Bill.julia\lib\v0.6\HttpParser.ji.
Stacktrace:
[1] compilecache(::String) at .\loading.jl:710
[2] _require(::Symbol) at .\loading.jl:463
[3] require(::Symbol) at .\loading.jl:405
[4] include_from_node1(::String) at .\loading.jl:576
[5] include(::String) at .\sysimg.jl:14
[6] include_from_node1(::String) at .\loading.jl:576
[7] include(::String) at .\sysimg.jl:14
[8] anonymous at .<missing>:2
while loading C:\Users\Bill.julia\v0.6\HttpServer\src\RequestParser.jl, in expression starting on line 16
while loading C:\Users\Bill.julia\v0.6\HttpServer\src\HttpServer.jl, in expression starting on line 12
ERROR: LoadError: LoadError: Failed to precompile HttpServer to C:\Users\Bill.julia\lib\v0.6\HttpServer.ji.
Stacktrace:
[1] compilecache(::String) at .\loading.jl:710
[2] _require(::Symbol) at .\loading.jl:463
[3] require(::Symbol) at .\loading.jl:405
[4] include_from_node1(::String) at .\loading.jl:576
[5] include(::String) at .\sysimg.jl:14
[6] include_from_node1(::String) at .\loading.jl:576
[7] include(::String) at .\sysimg.jl:14
[8] anonymous at .<missing>:2
while loading C:\Users\Bill.julia\v0.6\Mux\src\server.jl, in expression starting on line 1
while loading C:\Users\Bill.julia\v0.6\Mux\src\Mux.jl, in expression starting on line 25
ERROR: LoadError: LoadError: Failed to precompile Mux to C:\Users\Bill.julia\lib\v0.6\Mux.ji.
Stacktrace:
[1] compilecache(::String) at .\loading.jl:710
[2] _require(::Symbol) at .\loading.jl:463
[3] require(::Symbol) at .\loading.jl:405
[4] include_from_node1(::String) at .\loading.jl:576
[5] include(::String) at .\sysimg.jl:14
[6] include_from_node1(::String) at .\loading.jl:576
[7] include(::String) at .\sysimg.jl:14
[8] anonymous at .<missing>:2
while loading C:\Users\Bill.julia\v0.6\Blink\src\content/content.jl, in expression starting on line 1
while loading C:\Users\Bill.julia\v0.6\Blink\src\Blink.jl, in expression starting on line 9
ERROR: LoadError: Failed to precompile Blink to C:\Users\Bill.julia\lib\v0.6\Blink.ji.
Stacktrace:
[1] compilecache(::String) at .\loading.jl:710
[2] _require(::Symbol) at .\loading.jl:463
[3] require(::Symbol) at .\loading.jl:405
[4] include_from_node1(::String) at .\loading.jl:576
[5] include(::String) at .\sysimg.jl:14
[6] anonymous at .<missing>:2
while loading C:\Users\Bill.julia\v0.6\Atom\src\Atom.jl, in expression starting on line 5
ERROR: LoadError: Failed to precompile Atom to C:\Users\Bill.julia\lib\v0.6\Atom.ji.
Stacktrace:
[1] compilecache(::String) at .\loading.jl:710
[2] _require(::Symbol) at .\loading.jl:497
[3] require(::Symbol) at .\loading.jl:405
[4] include_from_node1(::String) at .\loading.jl:576
[5] include(::String) at .\sysimg.jl:14
[6] process_options(::Base.JLOptions) at .\client.jl:305
[7] _start() at .\client.jl:371
while loading C:\Users\Bill.atom\packages\julia-client\script\boot_repl.jl, in expression starting on line 72
I tried installing HttpParser but got below error.
julia> Pkg.build(“HttpParser”)
INFO: Building HttpParser
Info: Attempting to create directory C:\Users\Bill.julia\v0.6\HttpParser\deps\downloads
Info: Directory C:\Users\Bill.julia\v0.6\HttpParser\deps\downloads already exists
Info: Downloading file https://s3.amazonaws.com/julialang/bin/winnt/extras/libhttp_parser_2_7_1.zip
Exception calling “DownloadFile” with “2” argument(s): “The remote server returned an error: (403) Forbidden.”
At line:1 char:82
- … pe]::Tls12; (new-object net.webclient).DownloadFile("https://s3.amazo …
-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- CategoryInfo : NotSpecified: ( , MethodInvocationException
- FullyQualifiedErrorId : WebException
=================================================[ ERROR: HttpParser ]==================================================
LoadError: failed process: Process('C:\Windows\System32\WindowsPowerShell\v1.0\powershell' -NoProfile -Command '[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; (new-object net.webclient).DownloadFile("https://s3.amazonaws.com/julialang/bin/winnt/extras/libhttp_parser_2_7_1.zip", "C:\Users\Bill\.julia\v0.6\HttpParser\deps\downloads\libhttp_parser_2_7_1.zip")'
, ProcessExited(1)) [1]
while loading C:\Users\Bill.julia\v0.6\HttpParser\deps\build.jl, in expression starting on line 80
========================================================================================================================
====================================================[ BUILD ERRORS ]====================================================
WARNING: HttpParser had build errors.
- packages with build errors remain installed in C:\Users\Bill.julia\v0.6
- build the package(s) and all dependencies with
Pkg.build("HttpParser")
- build a single package by running its
deps/build.jl
script
========================================================================================================================
Does anyone know how to solve it?