Skip to content
This repository has been archived by the owner on Dec 26, 2022. It is now read-only.

Latest commit

 

History

History
25 lines (19 loc) · 1 KB

README.md

File metadata and controls

25 lines (19 loc) · 1 KB

Python & GPT3 Tutorial

Public Hello World to get used to Python and GPT-3

Episode 1 - Setting up your environment

XKCD comic about python

Links

Steps

  1. Download and install Python - make sure to add PATH to set it as system interpreter
  2. Download and install Git
  3. Download and install Notepad++
  4. Open a command prompt and run pip install pip --upgrade to upgrade pip
  5. Install the OpenAI module with pip install openai
  6. Run python --version to verify the system version of python
  7. Clone down this repo with git clone https://github.com/daveshap/PythonGPT3Tutorial.git
  8. Go to your OpenAI account and copy your key into openaiapikey.txt
  9. Go into the repo with cd PythonGPT3Tutorial
  10. Run the demo script with python hello_world.py