awellis / reflection-mentor

A mentor for reflective writing
MIT License
0 stars 0 forks source link

reflection-mentor

Setup python environment

We're using a combination of miniforge and pip to manage the python environment. mamba is a faster version of conda that we'll use to create the environment.

On MacOS/Linux, install miniforge using the following commands:

curl -L -O "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-$(uname)-$(uname -m).sh"
bash Miniforge3-$(uname)-$(uname -m).sh

Then, cd into reflection-mentor. Create an environment using mamba and activate it.

cd reflection-mentor
mamba create --prefix env python=3.11
mamba activate ./env 

Next, use pip to install the packages we need for the project.

pip install -r requirements.txt

Run chainlit app

chainlit run app.py -h