Changed to python3

Former-commit-id: cf53008270
This commit is contained in:
thewhiteh4t
2019-04-01 23:41:18 +05:30
parent 070a4b8b65
commit 92d05e12b1
+3 -3
View File
@@ -3,12 +3,12 @@ apt-get update > install.log
echo
echo '[!] Installing Dependencies...'
echo ' Python'
apt-get -y install python &>> install.log
apt-get -y install python3 python3-pip &>> install.log
echo ' NodeJS'
apt-get -y install nodejs &>> install.log
echo ' Requests'
pip install requests &>> install.log
pip3 install requests &>> install.log
echo ' CfScrape'
pip install cfscrape &>> install.log
pip3 install cfscrape &>> install.log
echo
echo '[!] Installed.'