Skip to content

Commit ad88d69

Browse files
Create readme.md
1 parent c513cb0 commit ad88d69

File tree

1 file changed

+50
-0
lines changed
  • Facebook Sentiment Analysis using python

1 file changed

+50
-0
lines changed
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# Installations in Anaconda
2+
3+
**NLTK :** is used for understanding of human natural language.
4+
5+
Installation Using conda command.
6+
```
7+
conda install -c anaconda nltk
8+
```
9+
Installation Using pip.
10+
```
11+
pip install nltk
12+
```
13+
**NumPy :** is a python package used for scientific and computional methods in python.
14+
15+
Installation Using conda.
16+
```
17+
conda install -c conda-forge numpy
18+
```
19+
Using pip.
20+
```
21+
pip install numpy
22+
```
23+
**Pandas :** is a python module used for data preprocessing and analysis .
24+
25+
Installation Using conda
26+
```
27+
conda install -c anaconda pandas
28+
```
29+
Installation Using pip.
30+
```
31+
pip install pandas
32+
```
33+
**Matplotlib :** is a python module used for data visualization and and 2D plotting for representation of data.
34+
35+
Installation Using conda.
36+
```
37+
conda install -c conda-forge matplotlib
38+
```
39+
40+
Installation Using pip.
41+
```
42+
pip install matplotlib
43+
```
44+
45+
## Authentication
46+
There are many ways to fetch Facebook comments those are:
47+
48+
- Facebook graph API
49+
- Direct download from Facebook
50+
- Downloading from another dataset provider sites

0 commit comments

Comments
 (0)