-
Notifications
You must be signed in to change notification settings - Fork 35
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
Building Error in Windows #13
Comments
Supposedly mingw is available on appveyor, perhaps it is worth enabling it? |
@mogit You can install |
@raphaelsaavedra Did you also add the location of |
Hey @amellnik, thanks for the quick answer. Yes, I have added the location of both mingw64 and 32 to my path. When trying to run gfortran on MinGW, the following error occurs: I have followed all instructions in the link you provided before. I'll also add I'm working on Windows 7. My friend who has a mac had no issues. |
That's expected. You should see the same thing if you run it from powershell/cmd in windows if you also added it to the windows (not Msys2) path. If that's the case then you should be able to run julia and try to add |
@amellnik I managed to make it work by running Julia as administrator. Apparently my user did not have the necessary permissions to run gfortran while building GLMNet? Either way thank you for the help. |
@amellnik Thanks! I had the same problem, and the same solution. |
Hi @RuilinOuyang -- as it happens I just became a Mac user myself. You can install |
@amellnik Thank you! I did what you said, it's working now. |
Distributing compiled dependencies would be a great help to users. |
When I try to build the GLMNet.jl it tells me that the file is not found. I dug around and it looks like the problem is inside the build.jl file:
and when the
run( )
line is read, under windows it will change$pic
to''
instead of an actual blank, which messes up the build. When I removed the$pic
from that line, it built fineThe text was updated successfully, but these errors were encountered: