This Docker file contains a recent version of the software in the OSCAR project:
- Make sure that Docker is installed
- Create a directory to hold your Julia scripts:
mkdir data
- Run
docker run -v "$(pwd)/data:/data" -it oscarsystem/oscar:latest
- This will open a Julia prompt. Now you can load Oscar:
using Oscar
With JupyterLab, you can run Oscar inside a Web server.
docker run -p 8888:8888 -v "$(pwd)/data:/data" oscarsystem/oscar-jupyter:latest
You will see instructions on what URL to open in your browser.