You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running Pkg.add("SomePackage") in julia 0.7 we get the following warning
WARNING: Base.Pkg is deprecated, run using Pkg instead
which is not the most helpful : I tried using Pkg add("SomePackage")
which gave exactly the same warning, and it took a while to find that we need to
use ] to get to the Pkg REPL.
I suggest extending the warning to help the transition for casual julia user.
The text was updated successfully, but these errors were encountered:
@KristofferC it works if you do this but print the same warning.
I do not know what is the correct way to install package anymore. It seems to be : using Pkg ] add SomePackage
When running
Pkg.add("SomePackage")
in julia 0.7 we get the following warningwhich is not the most helpful : I tried
using Pkg add("SomePackage")
which gave exactly the same warning, and it took a while to find that we need to
use ] to get to the Pkg REPL.
I suggest extending the warning to help the transition for casual julia user.
The text was updated successfully, but these errors were encountered: