Thanks to visit codestin.com Credit goes to github.com
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.
1 parent d565498 commit 5c8019aCopy full SHA for 5c8019a
README.md
@@ -98,6 +98,7 @@ Install packages using the new hotness in Python package management...[`pip`](ht
98
- interpreter: The Python interpreter to use. default is `python2.6`
99
- owner: The owner for the virtualenv
100
- group: The group owner of the file (string or id)
101
+- options : Command line options (string)
102
103
# Example
104
@@ -116,6 +117,14 @@ Install packages using the new hotness in Python package management...[`pip`](ht
116
117
action :create
118
end
119
120
+ # create a Python 2.6 virtualenv with access to the global packages owned by ubuntu user
121
+ python_virtualenv "/home/ubuntu/my_old_ve" do
122
+ owner "ubuntu"
123
+ group "ubuntu"
124
+ options "--system-site-packages"
125
+ action :create
126
+ end
127
+
128
Usage
129
=====
130
0 commit comments