Skip to content

Commit

Permalink
Add newly-required presamples channel to readme file
Browse files Browse the repository at this point in the history
  • Loading branch information
dgdekoning committed Dec 10, 2019
1 parent 48d82d3 commit 2a02c0b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ conda config --append channels conda-forge
conda config --append channels cmutel
conda config --append channels bsteubing
conda config --append channels haasad
conda config --append channels pascallesage
```

If you have already installed brightway2 before, chances are you already have these channels in your config file. You can check your channels with `conda config --show channels`. The output should look something like this if everything is set up correctly:
Expand All @@ -54,6 +55,7 @@ channels:
- cmutel
- bsteubing
- haasad
- pascallesage
```

### Install the activity browser
Expand Down Expand Up @@ -96,14 +98,14 @@ The most recent version of the master branch is automatically uploaded and gener
Install the development version like this:

```bash
conda create --yes --name ab_dev --channel conda-forge activity-browser-dev
conda create --yes --name ab_dev --channel conda-forge --channel pascallesage activity-browser-dev
```

Or update like this if you already have a dev environment:

```bash
conda activate ab_dev
conda update --channel conda-forge activity-browser-dev
conda update --channel conda-forge --channel pascallesage activity-browser-dev
```

---
Expand All @@ -126,7 +128,7 @@ You basically have 3 options:

1. Create a new environment entirely (recommended)
```bash
conda create -n new_ab_dev -c conda-forge -c cmutel -c bsteubing -c haasad activity-browser-dev
conda create -n new_ab_dev -c conda-forge -c cmutel -c bsteubing -c haasad -c pascallesage activity-browser-dev
```
2. Remove PyQt5 and install PySide2 (within your existing environment)
```bash
Expand Down

0 comments on commit 2a02c0b

Please sign in to comment.