This is the readme for ReWrite
Author: Ben Klassen
Here is how to get started using ReWrite!
- Install Python 3.11 https://www.python.org/downloads/
Windows:
- Create a virtual environment (e.g.,
py -m venv venv
) - Activate env (e.g.,
venv\scripts\active
) - Install packages (e.g.,
python -m pip install -r requirements.txt
) - Run program (e.g.,
python chatgpt_api.py
)
MacOS/Linux:
- Create a virtual environment (e.g.,
python3 -m venv venv
) - Activate env (e.g.,
source venv/bin/activate
) - Install packages (e.g.,
python -m pip install -r requirements.txt
) - Run program (e.g.,
python chatgpt_api.py
)
Author: Ben Klassen
MIT