Installation¶
C++ compiler¶
Firstly, you need to download c++ compiler.
Mac¶
Install homebrew:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Next, install the gcc:
brew install gcc
You also need python if you haven’t:
brew install python3
Finally, install git:
brew install git
Windows¶
Install Microsoft Visual Studio Build tools. You can find it in Tools for Visual Studio 2017 > Build Tools for Visual Studio 2017.
If you need python then install it from
here.
Please, be sure that you select Add python to path
in the bottom of the installer.
Finally, install git from here.
Python package¶
To install Python package from github, you need to clone our repository:
git clone https://github.com/appintheair/retentioneering-framework.git
Then, install dependencies from the requirements.txt file from that directory:
pip install -r requirements.txt --user
or, if previous command don’t work, use
pip3 install -r requirements.txt --user
Then, just run the setup.py file from that directory:
python setup.py install --user
or, if previous command don’t work, use
python3 setup.py install --user