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_shapes
52
52
53
53
Usage Example
@@ -115,15 +115,15 @@ To build this library locally you'll need to install the
115
115
116
116
.. code-block :: shell
117
117
118
- python3 -m venv .env
119
- source .env /bin/activate
118
+ python3 -m venv .venv
119
+ source .venv /bin/activate
120
120
pip install circuitpython-build-tools
121
121
122
122
Once installed, make sure you are in the virtual environment:
123
123
124
124
.. code-block :: shell
125
125
126
- source .env /bin/activate
126
+ source .venv /bin/activate
127
127
128
128
Then run the build:
129
129
@@ -139,8 +139,8 @@ install dependencies (feel free to reuse the virtual environment from above):
139
139
140
140
.. code-block :: shell
141
141
142
- python3 -m venv .env
143
- source .env /bin/activate
142
+ python3 -m venv .venv
143
+ source .venv /bin/activate
144
144
pip install Sphinx sphinx-rtd-theme
145
145
146
146
Now, once you have the virtual environment activated:
You can’t perform that action at this time.
0 commit comments