Skip to content

Commit

Permalink
[DOC] Support python3 venv creation
Browse files Browse the repository at this point in the history
In python3 there is no `virtualenv`. python2 is EOL. The venv directive should consider python3 first.
  • Loading branch information
look4regev committed Mar 7, 2020
1 parent 8a43ec4 commit 60f8ee2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Everyone who participates in this project is governed by [Bandit Code of Conduct
## Reporting Bugs
If you encountered a bug and want to let us know use [GitHub issues](https://guides.github.com/features/issues/).

**Before submitting a new issue** you might want to check [existsing issue](https://github.com/PyCQA/bandit/issues) to know if there is already a reported issue and the issue is still open
**Before submitting a new issue** you might want to check [existsing issue](https://github.com/PyCQA/bandit/issues) to know if there is already a reported issue and the issue is still open
in that case you can add a comment to the existing issue instead of creating a new one.

### Submitting your first issue
Expand Down
4 changes: 4 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ Bandit is distributed on PyPI. The best way to install it is with pip:
Create a virtual environment (optional)::

virtualenv bandit-env
# Or if you're working with a Python 3 project
python3 -m venv bandit-env
# And activate it:
source bandit-venv/bin/activate

Install Bandit::

Expand Down

0 comments on commit 60f8ee2

Please sign in to comment.