Skip to content

Commit

Permalink
Merge pull request #7 from ryanznie/gh-pages
Browse files Browse the repository at this point in the history
added clarification on setting up environment
  • Loading branch information
chosila authored Aug 9, 2023
2 parents 4afbc44 + e08b5c9 commit 0cd8c23
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,21 @@ You can then set `conda` to be available upon login with

Once `conda` is installed and set up, install dependencies with
```
conda env create -f environment.yml -p <path to install conda env>
conda env create -f environment.yml
```

Some packages cannot be installed via `conda` or take too long and need to be installed with `pip` (after activating your `conda` env above):
Then activate your environment to finish installing all packages.
```
conda activate autodqm-ml
```

Some packages cannot be installed via `conda` or take too long and need to be installed with `pip`.
```
pip install yahist
pip install tensorflow==2.5
```
If `tensorflow==2.5` is not available, `tensorflow==2.11.0` works.

Note: if you are running on `lxplus`, it may also be advisable to specify the installation location in your work or `/eos` area by including the installation path in the above command with `-p /afs/cern.ch/work/...`, as the resulting environment will be several GB in size.

Note: if you are running on `lxplus`, you may run into permissions errors, which may be fixed with:
Expand Down

0 comments on commit 0cd8c23

Please sign in to comment.