-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
34 lines (32 loc) · 828 Bytes
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/bash
# installer for Scrapes
# created by : Tobias Karuth (TKAMING)
# staging
echo [*] Staging process...
mkdir ~/.Scrapes
cd ..
sudo mv Scrapes/* ~/.Scrapes
sudo rm -rf Scrapes
cd ~/.Scrapes
echo [+] Completed
# get tools
echo [*] Installing tools...
sudo apt update
sudo apt-get install python3
sudo apt-get install python3-pip
pip3 install -e .
pip3 install Scweet==1.8
pip3 install certifi
pip3 install selenium==4.2.0
pip3 install pandas
pip3 install python-dotenv
pip3 install chromedriver-autoinstaller
pip3 install geckodriver-autoinstaller
pip3 install urllib3
cd ..
echo [+] Completed
# clean up
echo [+] Installation Completed
echo "1. restart your Computer"
echo "2. you can type 'scrapes [ARGUMENT]' to launch Scrapes"
echo "REQUIREMENTS: You need to install Chrome to use the Twitter scrape function!!!"