home || examples || download || doc || faq || contact

OSCARS

Open Source Code for Advanced Radiation Simulation

Download OSCARS 1.32.00

Simple Installation from Source

The simplest way to install OSCARS from source is using conda. This guarantees that you have all of the correct compilers and libraries. If you don't want to bother with conda, you can try the non-conda directions that follow


Installing with conda
First install conda. Then
# Install git in your root conda environment (if you don't already have it).
conda install -n root git

# Fix for temporary conda bug for some distributions
conda install -n root pyyaml

# Download the materials.
git clone https://github.com/dhidas/OSCARS -b 1.32.00

# Create a new "conda environment" and install the required Python packages.
cd OSCARS
conda env create -f environment.yml

# Activate the oscars conda environment
source activate oscars

# Build and install OSCARS
python setup.py install

Installing into your Native Environment

This is certainly possible. Here are the simple instructions:

# Download the materials.
git clone https://github.com/dhidas/OSCARS -b 1.32.00

# Change to the OSCARS directory
cd OSCARS

# Build and install OSCARS
python setup.py install


Binary Distributions

Binary distributions which include GPU capability are coming soon. If you would like to request a platform please send an email to oscars@bnl.gov

Last modified: 02 December 2016.

oscars@bnl.gov