Skip to content

Commit

Permalink
Adding uninstall instructions to README
Browse files Browse the repository at this point in the history
  • Loading branch information
marshallmcdonnell committed Jan 15, 2021
1 parent 39cf096 commit fe91878
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,21 @@ This "reduction" entails taking raw neutron counts from detectors in the diffrac

ADDIE is a front-end GUI for total scattering that hopes to support multiple diffractometers performing total scattering measurements. The back-end that uses the [Mantid Framework](https://docs.mantidproject.org/nightly/) is the [`mantid-total-scattering`](https://github.com/marshallmcdonnell/mantid_total_scattering) project.

## Installation
## Install

```
conda config --add channels conda-forge --add channels marshallmcdonnell --add channels mantid --add channels mantid/label/nightly
conda create -n addie_env python=${python_version}
source activate addie_env
```

## Uninstall

```
conda deactivate
conda remove -n addie_env --all
```

## Launch

To launch ADDIE, run the following from the command line:
Expand All @@ -44,6 +51,12 @@ conda env create
source activate addie
python setup.py install
```
### Uninstall

```
conda deactivate
conda remove -n addie --all
```

**Notes**

Expand Down

0 comments on commit fe91878

Please sign in to comment.