Skip to content

Commit

Permalink
Add make target for installing virtual environment "qmcpy"
Browse files Browse the repository at this point in the history
  • Loading branch information
schoi32 committed Apr 26, 2022
1 parent aa88bf9 commit 9eeb511
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -95,4 +95,10 @@ workout:

exportcondaenv:
@-rm -f requirements/environment.yml 2>/dev/null &
@conda env export --no-builds | grep -v "^prefix: " > requirements/environment.yml
@conda env export --no-builds | grep -v "^prefix: " > requirements/environment.yml

conda_dev:
@pip install conda
@conda create -n qmcpy python=3.7.11
@conda activate qmcpy
@pip install -r requirements/dev.txt

0 comments on commit 9eeb511

Please sign in to comment.