September 2016
Beginner to intermediate
346 pages
6h 35m
English
Julia provides a built-in package manager. Using Pkg we can install libraries written in Julia. For external libraries, we can also compile them from their source or use the standard package manager of the operating system. A list of registered packages is maintained at http://pkg.julialang.org.
Pkg is provided in the base installation. The Pkg module contains all the package manager commands.
The Pkg.status() is a function that prints out a list of currently installed packages with a summary. This is handy when you need to know if the package you want to use is installed or not.
When the Pkg command is run for the first time, the package directory is automatically created. It is required by the command ...
Read now
Unlock full access