-
Notifications
You must be signed in to change notification settings - Fork 1
/
Install_Python
33 lines (23 loc) · 1.19 KB
/
Install_Python
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
This class requires python and the python packages matplotlib, pandas, LDA, and textblob
For Windows
if you have the space, download Anaconda. It comes with IDLE, Pandas,Matplotlib, and an installer for the other packages.
https://docs.conda.io/projects/conda/en/latest/user-guide/install/index.html#regular-installation
This is by far the easiest option for Windows users.
If you don't have enough space download Miniconda or download pip for windows, then download pandas and matplotlib
For Mac OS
You do not need to install Anaconda. But you can
https://docs.conda.io/projects/conda/en/latest/user-guide/install/index.html#regular-installation
This will install all the packages you need, but also alot you don't. It requires a lot of space.
Python 2 comes pre-installed on Mac OS
You can check to see if pip is installed in the command line.
$ pip -V
or
$ which pip
If pip is not installed see:
https://pip.pypa.io/en/stable/installing/#installing-with-get-pip-py
TLDR; do the following commands in the command line:
$ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
$ python get-pip.py
$ sudo easy_install pip
To install pandas, Matplotlib, or other packages:
$ sudo pip install pandas