File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -4,38 +4,38 @@ This is an example pet name generator app used in the OpenAI API [quickstart tut
44
55## Setup
66
7- 1 . If you don’t have Python installed, [ install it from here] ( https://www.python.org/downloads/ )
7+ 1 . If you don’t have Python installed, [ install it from here] ( https://www.python.org/downloads/ ) .
88
9- 2 . Clone this repository
9+ 2 . Clone this repository.
1010
11- 3 . Navigate into the project directory
11+ 3 . Navigate into the project directory:
1212
1313 ``` bash
1414 $ cd openai-quickstart-python
1515 ```
1616
17- 4 . Create a new virtual environment
17+ 4 . Create a new virtual environment:
1818
1919 ``` bash
2020 $ python -m venv venv
2121 $ . venv/bin/activate
2222 ```
2323
24- 5 . Install the requirements
24+ 5 . Install the requirements:
2525
2626 ``` bash
2727 $ pip install -r requirements.txt
2828 ```
2929
30- 6 . Make a copy of the example environment variables file
30+ 6 . Make a copy of the example environment variables file:
3131
3232 ``` bash
3333 $ cp .env.example .env
3434 ```
3535
36- 7 . Add your [ API key] ( https://beta.openai.com/account/api-keys ) to the newly created ` .env ` file
36+ 7 . Add your [ API key] ( https://beta.openai.com/account/api-keys ) to the newly created ` .env ` file.
3737
38- 8 . Run the app
38+ 8 . Run the app:
3939
4040 ``` bash
4141 $ flask run
You can’t perform that action at this time.
0 commit comments