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