Pip dependencies scope.
| Enum constant | Description |
|---|---|
GLOBAL |
Global scope (all users). |
USER |
Current user (os) only. |
VIRTUALENV |
Use virtualenv. |
VIRTUALENV_OR_USER |
Use virtualenv if installed or fall back to user scope. |
| Methods inherited from class | Name |
|---|---|
class java.lang.Object |
java.lang.Object#wait(), java.lang.Object#wait(long, int), java.lang.Object#wait(long), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
Global scope (all users). May require additional rights on linux.
Current user (os) only. Packages are installed into the user specific (~/) directory.
Use virtualenv. Fail if virtualenv module not installed. If virtualenv is not created, then it would be created automatically. Path of environment location is configurable (by difault cached in .gradle dir).
Use virtualenv if installed or fall back to user scope.
Groovy Documentation