repo2docker/tests/julia/pyplot-requirements
yuvipanda a3b7e95594 Support requirements.txt & runtime.txt with Julia
The comment about Julia only working with CondaBuildPack
hasn't been true since we switched to using conda for getting
our pythons. This change allows people to use requirements.txt
with Julia, rather than forcing them to use environment.yaml
2019-01-17 17:23:54 -08:00
..
README.rst Support requirements.txt & runtime.txt with Julia 2019-01-17 17:23:54 -08:00
REQUIRE Support requirements.txt & runtime.txt with Julia 2019-01-17 17:23:54 -08:00
requirements.txt Support requirements.txt & runtime.txt with Julia 2019-01-17 17:23:54 -08:00
verify Support requirements.txt & runtime.txt with Julia 2019-01-17 17:23:54 -08: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
---------------

To specify dependencies in Julia, include a REQUIRE file that lists the names
of packages you'd like to be installed. For example:

```
PyPlot
IJulia
DataFrames
```

Each one will be installed but **not** pre-compiled. If you'd like to
pre-compile your Julia packages, consider using a ``postBuild`` file.

Note that this example also specifies Python dependencies with an
``requirements.txt`` file.