Skip to content

Commit a9e908f

Browse files
committed
Changed .env to .venv in README.rst
1 parent e58a062 commit a9e908f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ To install in a virtual environment in your current project:
4646
.. code-block:: shell
4747
4848
mkdir project-name && cd project-name
49-
python3 -m venv .env
50-
source .env/bin/activate
49+
python3 -m venv .venv
50+
source .venv/bin/activate
5151
pip3 install adafruit-circuitpython-display_shapes
5252
5353
Usage Example
@@ -115,15 +115,15 @@ To build this library locally you'll need to install the
115115

116116
.. code-block:: shell
117117
118-
python3 -m venv .env
119-
source .env/bin/activate
118+
python3 -m venv .venv
119+
source .venv/bin/activate
120120
pip install circuitpython-build-tools
121121
122122
Once installed, make sure you are in the virtual environment:
123123

124124
.. code-block:: shell
125125
126-
source .env/bin/activate
126+
source .venv/bin/activate
127127
128128
Then run the build:
129129

@@ -139,8 +139,8 @@ install dependencies (feel free to reuse the virtual environment from above):
139139

140140
.. code-block:: shell
141141
142-
python3 -m venv .env
143-
source .env/bin/activate
142+
python3 -m venv .venv
143+
source .venv/bin/activate
144144
pip install Sphinx sphinx-rtd-theme
145145
146146
Now, once you have the virtual environment activated:

0 commit comments

Comments
 (0)