You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Blink currently looks for 7z.exe on Windows in the location joinpath(ENV["LOCALAPPDATA"], juliafolders[i], "bin", "7z.exe"), (see install.jl here) which is no longer supported in Julia 1.3.0. 7z.exe now lives in joinpath(Sys.BINDIR, "..", "libexec"), as indicated in this Julia PR and also verified on a new install of Julia 1.3.0 on my Windows machine.
This should be relatively trivial to fix by checking for the version number and selecting the right folder, or simply by trying both folders. I would be willing to make a PR for this, but I don't know which approach would be preferable.
The text was updated successfully, but these errors were encountered:
Blink currently looks for 7z.exe on Windows in the location
joinpath(ENV["LOCALAPPDATA"], juliafolders[i], "bin", "7z.exe")
, (see install.jl here) which is no longer supported in Julia 1.3.0.7z.exe
now lives injoinpath(Sys.BINDIR, "..", "libexec")
, as indicated in this Julia PR and also verified on a new install of Julia 1.3.0 on my Windows machine.This should be relatively trivial to fix by checking for the version number and selecting the right folder, or simply by trying both folders. I would be willing to make a PR for this, but I don't know which approach would be preferable.
The text was updated successfully, but these errors were encountered: