Installing YT

YT requires Julia version 0.3 or later, and may be installed just like any other Julia package:

julia> Pkg.add("YT")

This will also install the following dependencies, if you don’t have them installed already:

However, for YT to work, yt itself must be installed. YT requires yt version 3.0 or higher. The best ways to install yt are via the install script or via the Anaconda Python Distribution.

Once YT is installed, either

julia> import YT

to use it as a library, or

julia> using YT

to use it as an application, loading its methods into the current session’s namespace.