-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
explicitly specify 7z #239
Conversation
Codecov Report
@@ Coverage Diff @@
## master #239 +/- ##
=======================================
Coverage 68.92% 68.92%
=======================================
Files 24 24
Lines 1860 1860
=======================================
Hits 1282 1282
Misses 578 578 Continue to review full report at Codecov.
|
@@ -43,7 +43,8 @@ if !libmxnet_detected | |||
run(`cmd /c copy "usr\\3rdparty\\openblas\\bin\\*.dll" "usr\\lib"`) | |||
|
|||
run(download_cmd(package_url, "mxnet.7z")) | |||
run(`7z x mxnet.7z -y -ousr`) | |||
exe7z = joinpath(JULIA_HOME, "7z.exe") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why joinpath
with JULIA_HOME
? Is 7z.exe shipped with Julia binary on windows?
@musm Thanks a lot! LGTM. Can you clarify the minor question above? |
7z is shipped with Julia in Windows and the default windows juliarc file adds JULIA_HOME so that 7z is automatically added to path. The default juliarc behavior will go away in future version of Julia, see linked issue. So we will now need to explicitly specify the 7z path, which resided where JULIA_HOME is. |
Thanks for the clarification! |
No description provided.