Real time narrate your life with chatGPT
- Python3
- ChatAPI access
-
save your ChatGPT API key in OPENAI_API_KEY
-
edit lines 56-58 in narrative.py
-
edit line 87. If you're using your webcam set to 0
-
run requirements.txt
pip3 install -r requirements.txt
-
run python3 narrative.py
python3 narrative.py
To install the dependencies listed in a requirements.txt file in Python 3, you can use the pip package manager. Here are the steps to do so:
-
Navigate to the Directory: Open a terminal or command prompt and navigate to the directory where your
requirements.txtfile is located.cd /path/to/directory -
Install Dependencies: Run the following command to install the dependencies specified in the
requirements.txtfile:pip3 install -r requirements.txt
This command tells
pip3to install the packages listed in therequirements.txtfile. -
Verify Installation: After the installation process completes, you can verify that the dependencies were installed correctly by running:
pip3 list
This command will display a list of installed packages along with their versions.
By following these steps, you can easily install the dependencies listed in a requirements.txt file for your Python 3 project.