Skip to content

Commit 3fe4fa9

Browse files
...
1 parent 0bff76e commit 3fe4fa9

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

activate_environment.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/bash
2+
3+
VENV_DIR="psdenv"
4+
5+
# Check if the virtual environment directory exists
6+
if [ ! -d "$VENV_DIR" ]; then
7+
# Create the virtual environment
8+
python -m venv "$VENV_DIR"
9+
fi

0 commit comments

Comments
 (0)