Changed .env to .venv in README.rst
This commit is contained in:
parent
80ac0d063b
commit
fc62a1ea8d
1 changed files with 7 additions and 7 deletions
14
README.rst
14
README.rst
|
|
@ -46,8 +46,8 @@ To install in a virtual environment in your current project:
|
|||
.. code-block:: shell
|
||||
|
||||
mkdir project-name && cd project-name
|
||||
python3 -m venv .env
|
||||
source .env/bin/activate
|
||||
python3 -m venv .venv
|
||||
source .venv/bin/activate
|
||||
pip3 install adafruit-circuitpython-led-animation
|
||||
|
||||
Usage Example
|
||||
|
|
@ -97,15 +97,15 @@ To build this library locally you'll need to install the
|
|||
|
||||
.. code-block:: shell
|
||||
|
||||
python3 -m venv .env
|
||||
source .env/bin/activate
|
||||
python3 -m venv .venv
|
||||
source .venv/bin/activate
|
||||
pip install circuitpython-build-tools
|
||||
|
||||
Once installed, make sure you are in the virtual environment:
|
||||
|
||||
.. code-block:: shell
|
||||
|
||||
source .env/bin/activate
|
||||
source .venv/bin/activate
|
||||
|
||||
Then run the build:
|
||||
|
||||
|
|
@ -121,8 +121,8 @@ install dependencies (feel free to reuse the virtual environment from above):
|
|||
|
||||
.. code-block:: shell
|
||||
|
||||
python3 -m venv .env
|
||||
source .env/bin/activate
|
||||
python3 -m venv .venv
|
||||
source .venv/bin/activate
|
||||
pip install Sphinx sphinx-rtd-theme
|
||||
|
||||
Now, once you have the virtual environment activated:
|
||||
|
|
|
|||
Loading…
Reference in a new issue