File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -26,12 +26,18 @@ so we will change to this directory when `workon` is called.
2626For example Python 3.4
2727```
2828$ mkvirtualenv wsgidav3_py34 -p /Library/Frameworks/Python.framework/Versions/3.4/bin/python3.4 -a .
29+ $ workon wsgidav3_py34
2930```
3031
31- The new environment should now exist and can be activated.
32+ or using Python's builtin ` venv ` instead of ` virtualenvwrapper ` :
33+ ```
34+ > py -3.4 -m venv c:\env\wsgidav3_py34
35+ > c:\env\wsgidav3_py34\Scripts\activate.bat
36+ ```
37+
38+ The new environment exists and is activated.
3239Now install the development dependencies into that environemt:
3340```
34- $ workon wsgidav3_py34
3541(wsgidav3_py34) $ pip install -r requirements-dev.txt
3642```
3743
Original file line number Diff line number Diff line change 55http://peak.telecommunity.com/DevCenter/setuptools#tagging-and-daily-build-or-snapshot-releases
66Example "1.2.0b1", "1.2.0pre1" or "1.2.0"
77"""
8- __version__ = "2.0.0b1 "
8+ __version__ = "2.0.0 "
You can’t perform that action at this time.
0 commit comments