Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 403 Bytes

File metadata and controls

30 lines (19 loc) · 403 Bytes

Chatbot

How to set up Virtual Environment [MacOS]

Create /venv folder before executing it

python -m venv venv

How to activate Virtual Environment [MacOS]

Create /venv folder before executing it

source venv/bin/activate

How to install all dependencies

pip install -r requirements.txt

How to start up project

uvicorn main:server