Skip to content

Latest commit

 

History

History
53 lines (33 loc) · 1.65 KB

INSTALL.md

File metadata and controls

53 lines (33 loc) · 1.65 KB

Installation

Base requirements:

  • Python 3.7 or newer
  • Required Python packages
    • pandas
    • textmining3
    • wordcloud
    • matplotlib
    • mlxtend
    • graphviz
    • scikit-learn
    • okpy
  • Jupyter
  • graphviz

For Windows

Set up using Anaconda

The most straightforward way to install the requirements if you do not already have Python 3 installed is to download and install Anaconda for Python 3.

Download and install graphviz for Windows.

Download or git clone this repository to your computer.

To install the required Python packages, after you have installed Anaconda you can run the following command from the root directory of this repository:

pip install -r requirements.txt

You can then launch Jupyter from the Anaconda Navigator application.

For Mac OSX

Set up using Anaconda

The most straightforward way to install the requirements if you do not already have Python 3 installed is to download and install Anaconda for Python 3.

Download and install graphviz for Mac OSX.

Download or git clone this repository to your computer.

To install the required Python packages, after you have installed Anaconda you can run the following command from the root directory of this repository:

pip install -r requirements.txt

You can then launch Jupyter from the Anaconda Navigator application or with the following command from the root directory of this repository:

jupyter notebook

For Linux

TODO