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 d50dfa1 commit 6d8701dCopy full SHA for 6d8701d
scripts/install.sh
@@ -5,16 +5,18 @@ if [ "$EUID" -ne 0 ]; then
5
exit 1
6
fi
7
8
+if ! command -v python3 &> /dev/null; then
9
+ echo "Python 3 is not installed. Please install Python 3 before running this script."
10
+ exit 1
11
+fi
12
+
13
TEMP_DIR=$(mktemp -d)
14
cd $TEMP_DIR
15
16
echo "Downloading Nixopus..."
17
git clone https://github.com/raghavyuva/nixopus.git
18
cd nixopus/installer
19
-echo "Installing dependencies..."
-pip install -r requirements.txt
-
20
echo "Starting installation..."
21
python3 install.py
22
0 commit comments