Skip to content

Commit 2f035e3

Browse files
committed
documentation
1 parent aa694bf commit 2f035e3

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

README.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,29 +41,35 @@ Note that I created this code sample using Python version 3.10. For best results
4141
If you starting from scratch then you might need to install Python on your computer, and you might also need to install a good installer. Crazy, and very meta, but yes, you might need to do that.
4242

4343
```console
44-
# check if homebrew is installed on your computer
44+
# 1. check if homebrew is installed on your computer
45+
# -------------------------------------
4546
foo@bar:~$ brew --version
4647
Homebrew 4.0.23
4748
Homebrew/homebrew-core (git revision 50877e2f6f7; last commit 2023-02-27)
4849
Homebrew/homebrew-cask (git revision cf17a964ec; last commit 2023-02-28)
4950

50-
# 1. check if you've previously installed a python interpretter using homebrew
51+
# 2. check if you've previously installed a python interpretter using homebrew
52+
# -------------------------------------
5153
foo@bar:~$ brew list
5254

53-
# 2. if you don't see [email protected] in the output then install it now.
55+
# 3. if you don't see [email protected] in the output then install it now.
56+
# -------------------------------------
5457
foo@bar:~$ brew install [email protected]
5558

56-
# 3. verify that python3.10 is in your computer's search path
59+
# 4. verify that python3.10 is in your computer's search path
60+
# -------------------------------------
5761
foo@bar:~$ which python3.10
5862
/opt/homebrew/bin/python3.10
5963

60-
# 4. create a Python Virtual Environment using python 3.10 as your interpretter
64+
# 5. create a Python Virtual Environment using python 3.10 as your interpretter
65+
# -------------------------------------
6166
foo@bar:~$ mkdir fullstackwithlawrence && cd fullstackwithlawrence
6267
foo@bar:~$ python3.10 -m venv venv
6368
foo@bar:~$ source venv/bin/activate
6469

65-
# 5. verify that your Python virtual environment is activated, and
70+
# 6. verify that your Python virtual environment is activated, and
6671
# that it is using Python version 3.10.x
72+
# -------------------------------------
6773
foo@bar:~$ which python
6874
/Users/foo/fullstackwithlawrence/venv/bin/python3.10
6975

@@ -74,7 +80,7 @@ Python 3.10.12
7480

7581
## Contributing
7682

77-
Give back to the open source community! If you have good ideas for how to improve this code then seize. Fork this repo, make your changes, and then open a pull request, which you can do directly from Github.
83+
Give back to the open source community! If you have good ideas for how to improve this code then by all means, please seize the day and share your improvements by creating a pull request: fork this repo, make your changes, and then open a pull request; most of which can be done directly from Github.
7884

7985
### Local development
8086

0 commit comments

Comments
 (0)