We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 788d21d + 08dd585 commit 6f8de2fCopy full SHA for 6f8de2f
2 files changed
README.md
@@ -20,7 +20,6 @@ To use this boilerplate:
20
1. Install the requirements:
21
```
22
$ pip install cookiecutter
23
- $ pip install virtualenv
24
25
[Node.js/npm is also required.](https://nodejs.org/en/)
26
2. Run cookiecutter on the boilerplate repo:
hooks/post_gen_project.py
@@ -58,10 +58,7 @@ def _execute_command(cmd):
58
sys.exit(0)
59
60
# Create a virtual env
61
-if sys.version.split(' ')[0] > '3.2':
62
- venv = '{} -m venv venv'.format(sys.executable)
63
-else:
64
- venv = 'virtualenv venv'
+venv = '{} -m venv venv'.format(sys.executable)
65
66
# noinspection PyBroadException
67
try:
0 commit comments