Skip to content

Commit

Permalink
Rename the default virtual environment
Browse files Browse the repository at this point in the history
  • Loading branch information
kunathj committed Jul 7, 2021
1 parent 1471625 commit 617d7b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# venv
py3/*
venv

*.py[co]
__pycache__
Expand Down
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ Now you have your own branch to try out new stuff.
## venv

```bash
python -m venv py3 # This folder was set up to be ignored by git.
source py3/bin/activate
python -m venv venv # This folder was set up to be ignored by git.
source venv/bin/activate
pip install -r requirements-dev.txt
```

The python environment by removing the `py3` folder.
The python environment by removing the `venv` folder.

## conda

Expand Down

0 comments on commit 617d7b4

Please sign in to comment.