17 lines
424 B
Bash
17 lines
424 B
Bash
#!/bin/sh
|
|
|
|
# Install pip
|
|
|
|
sleep 1
|
|
|
|
echo '{"error": 0, "status": 0, "progress": 100, "no_progress":0, "message": "Installing python3-psutil..."}'
|
|
|
|
sudo /opt/pythonenv/bin/pip3 install psutil
|
|
#sudo apt-get install -y python3-psutil
|
|
|
|
#echo "Installed python3-psutil sucessfully if not error..."
|
|
|
|
sleep 1
|
|
|
|
echo '{"error": 0, "status": 0, "progress": 100, "no_progress":0, "message": "Installed python3-psutil sucessfully..."}'
|
|
|