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
11 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