Auto-Installing Dependencies

So let’s say I have a project with dependencies. I could them to install with

Pkg.add()

But I’ve also read a bit about Project.toml and Manifest.toml , which seem a lot cleaner. I don’t quite get if or how they automate the installation of dependencies so could someone please help me?

If you have cloned a repo that declares it’s dependencies, you can just use Pkg.instantiate() and it will install the correct versions of everything.

3 Likes