What is the official way of upgrading Julia from 1.0.0 to 1.0.1 installed with Windows Self-Extracting Archive? Should I uninstall the old version and install the new one? Will previously installed packages and Juno IDE still work?
BTW, there seems to be no info about version upgrade in Julia manual.
The way I have done so far is to install the new version (AppData/Local/Julia-new-version), check that it works and delete the old one by using the uninstall.exe in the appropriate folder. Previously installed packages for minor versions upgrade will work.
To add to @kristoffer.carlsson 's response, all versions of Julia with the same major and minor version (1.0.0, 1.0.1, 1.0.2, 1.0.3) share the same installed packages, since there shouldn’t be any difference between those versions of Julia (other than bugfixes). You’ll just have to let Julia re-precompile your packages when using a new 1.0.x version (like going 1.0.2 → 1.0.3).
i find it was hanging on some package (eg. Blink) building when i upgrade from v1.0.2 to v1.0.3, while they can be use in v1.0.2. Is anywhere I can download the package.tar.gz for manualy installing ?
You can also check the log at ~/.julia/packages/Blink/.../deps/build.log to see what it says and also check what the build script build.jl is doing to see what it does.
According to your build log, you only downloaded 12% of the file being downloaded by the build script. The solution is to wait for the download to finish, looks like the download is hanging though.
Also, it’s better if you copy the text on here, and not images of text.