We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bff76e commit 3fe4fa9Copy full SHA for 3fe4fa9
1 file changed
activate_environment.sh
@@ -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