Python & GPT3 Tutorial
Public Hello World to get used to Python and GPT-3
Episode 1 - Setting up your environment
Links
- Download python https://www.python.org/downloads/
- Download Git https://git-scm.com/downloads
- Download Notepad++ https://notepad-plus-plus.org/downloads/
Steps
- Download and install Python - make sure to add PATH to set it as system interpreter
- Download and install Git
- Download and install Notepad++
- Open a command prompt and run
pip install pip --upgrade
to upgrade pip - Install the OpenAI module with
pip install openai
- Run
python --version
to verify the system version of python - Clone down this repo with
git clone https://github.com/daveshap/PythonGPT3Tutorial.git
- Go to your OpenAI account and copy your key into
openaiapikey.txt
- Go into the repo with
cd PythonGPT3Tutorial
- Run the demo script with
python hello_world.py