From 48ca70d3172d427de24cfe36c33fcbe28bd2d79e Mon Sep 17 00:00:00 2001 From: "Gabrielle \"Kaili\" Liu" Date: Thu, 29 Feb 2024 14:05:56 +0800 Subject: [PATCH] Update README.md with sentiment classification envir specs --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6704be2a4..0e2fc8d47 100644 --- a/README.md +++ b/README.md @@ -3,4 +3,14 @@ To run frontend or backend code, please add an `.env` file inside that directory ``` OPENAI_API_KEY=sk-XXX ``` -Don't push your API key to this repo! \ No newline at end of file +Don't push your API key to this repo! + +To run sentiment classification, first create a conda environment for Python 3 using the requirements.txt file: +``` +conda create --name --file sent_classif_requirements.txt +``` +Activate the conda environment by running: +``` +conda activate +``` +where `` is your name of choice for the conda environment.