-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First cut - no venvwrapper module yet
- Loading branch information
Maverick Wolverine
committed
Apr 8, 2018
1 parent
c519265
commit c86ee36
Showing
2 changed files
with
1,371 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
################# | ||
venvwrapper | ||
################# | ||
|
||
venvwrapper is a set of extensions to Python 3 venv module. The extensions include | ||
wrappers for creating and deleting virtual environments and otherwise | ||
managing your development workflow, making it easier to work on more | ||
than one project at a time without introducing conflicts in their | ||
dependencies. | ||
|
||
This is a direct port of Doug Hellmann's virtualenvwrapper | ||
|
||
================= | ||
Installation | ||
================= | ||
|
||
# 1. Add a line like "source /path/to/this/file/venvwrapper.sh" | ||
# to your .bashrc. | ||
# 2. Run: source ~/.bashrc | ||
# 3. Run: workonvenv | ||
# 4. A list of environments, empty, is printed. | ||
# 5. Run: mkvenv temp | ||
# 6. Run: workonvenv | ||
# 7. This time, the "temp" environment is included. | ||
# 8. Run: workonvenv temp | ||
# 9. The virtual environment is activated. |
Oops, something went wrong.