Skip to content

Commit 79159be

Browse files
authored
Merge pull request #2004 from ftruzzi/docs
Add step to quick start guide to update pip
2 parents cba70e1 + 4b30998 commit 79159be

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

docs/guides/building_an_app_that_uses_pyevm.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ Next, we'll create a new directory ``app`` and create a file ``main.py`` inside.
105105
... )
106106
The balance of address 0x0000000000000000000000000000000000000000 is 10000000000000000000000 wei
107107

108-
Runing the script
109-
-----------------
108+
Running the script
109+
------------------
110110

111111
Let's run the script by invoking the following command.
112112

docs/guides/quickstart.rst

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@ we need to install the ``python3-pip`` package through the following command.
2828
.. note::
2929
.. include:: /fragments/virtualenv_explainer.rst
3030

31+
Then, we need make to sure you have the latest version of ``pip`` so that all dependencies can be installed correctly:
32+
33+
.. code:: sh
34+
35+
pip3 install -U pip
36+
3137
Finally, we can install the ``py-evm`` package via pip.
3238

3339
.. code:: sh
@@ -46,7 +52,13 @@ First, install Python 3 with brew:
4652
.. note::
4753
.. include:: /fragments/virtualenv_explainer.rst
4854

49-
Then, install the ``py-evm`` package via pip:
55+
Then, make sure to have the latest version of ``pip`` so that all dependencies can be installed correctly:
56+
57+
.. code:: sh
58+
59+
pip3 install -U pip
60+
61+
Finally, install the ``py-evm`` package via pip:
5062

5163
.. code:: sh
5264

0 commit comments

Comments
 (0)