MacOS

  1. Install Python3, Git and a text editor of your choice.

  2. Clone the FFC directory as a project in Terminal and navigate to the directory on your computer.

    git clone https://github.com/leogoesger/func-flow.git
    cd func-flow/
  3. Create and activate a virtual environment.

    python3 -m venv my-virtualenv
    source my-virtualenv/bin/activate
  4. Install dependencies using pip.

    pip install -r requirements.txt

Last updated