Installation#

Dependencies#

The main dependencies of Frites are :

In addition to the main dependencies, here’s the list of additional packages that you might need :

Installation from pip#

Frites can be installed (and/or updated) via pip with the following command :

pip install -U frites

If you choose this installation method, you’ll get stable Frites’ release. If you want the latest features and patches, you can directly install from Github (see bellow)

Installation from Github#

Run the following line in your terminal to install the latest version of Frites hosted on Github :

pip install git+https://github.com/brainets/frites.git

Developer installation#

For developers, you can install frites in develop mode with the following commands :

git clone https://github.com/brainets/frites.git
cd frites
python setup.py develop
# or : pip install -e .