Skip to content

Commit 0642f85

Browse files
committed
Changed .env to .venv in README.rst
1 parent 41fac3e commit 0642f85

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-button
5252
5353
Usage Example
@@ -80,15 +80,15 @@ To build this library locally you'll need to install the
8080

8181
.. code-block:: shell
8282
83-
python3 -m venv .env
84-
source .env/bin/activate
83+
python3 -m venv .venv
84+
source .venv/bin/activate
8585
pip install circuitpython-build-tools
8686
8787
Once installed, make sure you are in the virtual environment:
8888

8989
.. code-block:: shell
9090
91-
source .env/bin/activate
91+
source .venv/bin/activate
9292
9393
Then run the build:
9494

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

105105
.. code-block:: shell
106106
107-
python3 -m venv .env
108-
source .env/bin/activate
107+
python3 -m venv .venv
108+
source .venv/bin/activate
109109
pip install Sphinx sphinx-rtd-theme
110110
111111
Now, once you have the virtual environment activated:

0 commit comments

Comments
 (0)