-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequired.txt
More file actions
31 lines (22 loc) · 847 Bytes
/
required.txt
File metadata and controls
31 lines (22 loc) · 847 Bytes
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
********************** Required packages and drivers **********************
1. Selenium
pip install -U selenium
or
pip install -r setup.py
i.e touch setup.py with 'selenium' in it
2. ChromeDriver
I have included ChromeDriver in the 'include' folder,
but if you want to create your own project download ChromeDriver and include your path in your code
3. Virtualenv
[sudo] pip install virtualenv
*********************** steps **************************
** create a virtual environment
1. virtualenv webscraping
** install the dependency into your virtualenv
2. pip install -r setup.py
** activate the virtualenv
3. Source webscraping/bin/activate
************* other required packages to install into your virtual environment ************
1. pip install pandas
2. pip install requests
3. pip install bs4