Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Installation

🚧 Page under construction 🚧

Install into a new Anaconda environment
Install into an existing Anaconda environment

For Windows, Linux, and Intel-based Mac:

1: Install the ORMIR-XCT Anaconda environment from the YAML file:
conda env create -f environment.yml

2: Activate and use the ORMIR-XCT environment:
conda activate ormir-xct

For Apple Silicon Mac (M-chips):

1: Install the ORMIR-XCT Anaconda environment, specifying macOS architecture:
CONDA_SUBDIR=osx-64 conda create -n ormir-xct python=3.11.11 pip

2: Activate the ORMIR-XCT environment:
conda activate ormir-xct

3: Tell conda to always use the macOS architecture:
conda env config vars set CONDA_SUBDIR=osx-64

4: Deactivate and reactivate the environment:
conda deactivate
conda activate ormir-xct

5: Install the required dependencies using pip:
pip install -r requirements.txt