Skip to content

Commit

Permalink
updated the doc to setup virtualenv using python3
Browse files Browse the repository at this point in the history
  • Loading branch information
Milstein committed Aug 22, 2023
1 parent edf397d commit 4740613
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,11 @@ choose any other method to create a local virtual environment like Conda.

```sh
cd nerc-docs
py -3 -m venv venv
```

```sh
# make sure you are able to use python or python3 or py -3 (in Windows Only)
python3 -m venv venv
```

Activate the virtual environment by running:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,8 @@ This is a python client for the Swift API. There's a [Python API](https://github
- This example uses a `Python3` virtual environment, but you are free to choose
any other method to create a local virtual environment like `Conda`.

py -3 -m venv venv
# make sure you are able to use python or python3 or py -3 (in Windows Only)
python3 -m venv venv

- Activate the virtual environment by running:

Expand Down

0 comments on commit 4740613

Please sign in to comment.