Adding a package in Julia "ERROR The following package names could not be resolved"

When trying to add a package on Julia, I keep getting these message.

Pkg.add("Taro")
ERROR: The following package names could not be resolved: * Taro (not found in project, manifest or registry)
Please specify by known `name=uuid`.

The warning only pops up when installing certain packages. I have also tried to use: get glone , but has not worked neither.

Thank you in advance for your help.

Rodrigo

1

1 Answer

The package is registered but doesn't seem to be ready for Julia 1.0.

You can (force) add it from it's github repository. It's located at . Hence, you can either

] add 

or equivalently

using Pkg
Pkg.add("")

However, building the package will fail on Julia 1.0. Note that the URL that you mention, , is only the packages documentation.

3

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like