From c30120f4026e148e4261dbc6e2a88c2c6928292e Mon Sep 17 00:00:00 2001 From: Geoff Boeing Date: Tue, 9 Jan 2024 19:37:05 -0800 Subject: [PATCH] add windows script --- software/create-environment.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/software/create-environment.sh b/software/create-environment.sh index 2f66263..44275be 100644 --- a/software/create-environment.sh +++ b/software/create-environment.sh @@ -1,7 +1,6 @@ #!/bin/bash set -e ENV=ppde642 -PACKAGE=osmnx eval "$(conda shell.bash hook)" conda activate base mamba env remove -n $ENV --yes @@ -16,4 +15,4 @@ jupyter kernelspec list ipython -c "from nltk.corpus import brown; print(brown.words())" ipython -c "import torch; print(torch.__version__, torch.cuda.is_available())" ipython -c "from transformers import pipeline; print(pipeline('sentiment-analysis')('I love you'))" -ipython -c "import $PACKAGE; print('$PACKAGE version', $PACKAGE.__version__)" +ipython -c "import osmnx; print('osmnx version', osmnx.__version__)"