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 0daa635 commit c63fea8Copy full SHA for c63fea8
scripts/install.sh
100644
100755
@@ -27,12 +27,18 @@ echo "Downloading Nixopus..."
27
git clone https://github.com/raghavyuva/nixopus.git
28
cd nixopus/installer
29
30
+echo "Setting up Python virtual environment..."
31
+python3 -m venv venv
32
+source venv/bin/activate
33
+
34
echo "Installing dependencies..."
-pip3 install -r requirements.txt
35
+pip install --upgrade pip
36
+pip install -r requirements.txt
37
38
echo "Starting installation..."
-python3 install.py
39
+python3 install.py "$@"
40
41
+deactivate
42
cd $TEMP_DIR/..
43
rm -rf $TEMP_DIR
44
0 commit comments