Recently, I want to update my current 0.4.X version to latest 0.5.0. What's the best practice to accomplish this job? Do I have to first remove my current version before installing the new one? What about these installed packages, do I have to reinstall them one by one? Can my IDE (like Atom) support the new version automatically (or only with slight modification)?
答案 0 :(得分:7)
获取.julia / v0.4 / REQUIRE文件并将其放入.julia / v0.5中,然后在Pkg.update()
时添加所有这些包。您可能需要在REPL中执行using Atom
以使Juno在使用之前正确地重新编译。