repo2docker/tests/julia/julia_version
Nathan Daly 7fbb0f9964 Add JULIA_BINDDIR environment variable for julia v0.7+
Add tests for the ENVIRONMENT VARIABLES to the julia unit tests.
2018-09-30 22:33:40 -04:00
..
README.rst
REQUIRE
verify Add JULIA_BINDDIR environment variable for julia v0.7+ 2018-09-30 22:33:40 -04:00

README.rst

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

Julia - REQUIRE: packages and julia version number
---------------

To specify dependencies in Julia, include a REQUIRE file.

To specify a version of Julia to be installed, the first line of the file must
follow the format `julia <version-number>`. For example:
```
julia 0.7
```

To add package dependencies, the rest of the file can include lines that list
the names of packages you'd like to be installed. For example:

```
PyPlot
DataFrames
```

Note that `IJulia` is installed by default.

These packages will all be installed, and then precompiled via `using`.