File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -46,8 +46,8 @@ To install in a virtual environment in your current project:
46
46
.. code-block :: shell
47
47
48
48
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
51
51
pip3 install adafruit-circuitpython-display-button
52
52
53
53
Usage Example
@@ -80,15 +80,15 @@ To build this library locally you'll need to install the
80
80
81
81
.. code-block :: shell
82
82
83
- python3 -m venv .env
84
- source .env /bin/activate
83
+ python3 -m venv .venv
84
+ source .venv /bin/activate
85
85
pip install circuitpython-build-tools
86
86
87
87
Once installed, make sure you are in the virtual environment:
88
88
89
89
.. code-block :: shell
90
90
91
- source .env /bin/activate
91
+ source .venv /bin/activate
92
92
93
93
Then run the build:
94
94
@@ -104,8 +104,8 @@ install dependencies (feel free to reuse the virtual environment from above):
104
104
105
105
.. code-block :: shell
106
106
107
- python3 -m venv .env
108
- source .env /bin/activate
107
+ python3 -m venv .venv
108
+ source .venv /bin/activate
109
109
pip install Sphinx sphinx-rtd-theme
110
110
111
111
Now, once you have the virtual environment activated:
You can’t perform that action at this time.
0 commit comments