I just tried to set-up Julia/Jupyter enviaroment following initial course instruction, but I have encontered following problem: Jupyter printed following warning message (screen attached): ┌ Warning: On Windows, creating file symlinks requires Administrator privileges
└ @ Base.Filesystem file.jl:789
Process started, but instead of in course instructions mentioned 10-15 minutes, it runs more than hour without any resoult. Can anybody please give me a hint, how to proceed?
Edit: Actually, I have a hunch for what’s causing this.
The name C:\Julia, Matlab, R is probably failing parsing. We tried to rely on Julia’s filesystem support as much as possible, but I think this name breaks an assumption.
Here’s what you should do to test this:
Print the results of versioninfo() to your screen, so we can see your hardware/Julia environment (you should always do this while checking bugs).
In Julia, run DEPOT_PATH[1] and go to that directory. If there are packages there under packages/, and if there are compiled objects there under compiled/, then this is working as expected. But I suspect there won’t be.
Optional: For good measure, try running this command from a more standard directory name (i.e., one without spaces or commas). If it works, then we can be confident this is the issue.
Do a fresh install of Julia by deleting your user depot at DEPOT_PATH[1] and the Julia install objects (i.e., a few levels up from what you see when you run Sys.BINDIR in Julia).
Download the latest InstantiateFromURL.jl by running add InstantiateFromURL#master in your package manager (i.e., what you find by hitting ]).
Run the same command in the same directory, and see if it’s now successful.