Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 718 Bytes

README.md

File metadata and controls

19 lines (16 loc) · 718 Bytes

llm-and-misinformation

Getting Started

  1. cd to root directory
  2. Create local virtual environment: python3 -m venv .venv (or use python)
  3. Activate virtual environment: source .venv/bin/activate
  4. Install dependencies: pip install -r requirements.txt
  5. Create .env file with OPENAI_API_KEY key

Adding Additional Dependencies:

  1. Activate virtual environment: source .venv/bin/activate
  2. Install packages in terminal (e.g. pip install pandas)
  3. Update requirements file: pip freeze > requirements.txt
  4. Commit requirements.txt

Running Script

  1. cd to root directory
  2. Activate virtual environment: source .venv/bin/activate
  3. Run script: python3 run.py (or python)