mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
42 lines
No EOL
1.1 KiB
Groff
42 lines
No EOL
1.1 KiB
Groff
.TH ANSIBLE.EASY_INSTALL 5 "2012-10-03" "0.8" "ANSIBLE MODULES"
|
|
." generated from library/easy_install
|
|
.SH NAME
|
|
easy_install \- Installs Python libraries
|
|
." ------ DESCRIPTION
|
|
.SH DESCRIPTION
|
|
.PP
|
|
Installs Python libraries, optionally in a \fIvirtualenv\fR
|
|
." ------ OPTIONS
|
|
."
|
|
."
|
|
.SH OPTIONS
|
|
|
|
.IP virtualenv
|
|
an optional \fIvirtualenv\fR directory path to install into. If the \fIvirtualenv\fR does not exist, it is created automatically
|
|
.IP name
|
|
A Python library name(required)."
|
|
."
|
|
." ------ NOTES
|
|
.SH NOTES
|
|
.PP
|
|
Please note that the \fIeasy_install\fR module can only install Python libraries. Thus this module is not able to remove libraries. It is generally recommended to use the \fIpip\fR module which you can first install using \fIeasy_install\fR.
|
|
.PP
|
|
Also note that \fIvirtualenv\fR must be installed on the remote host if the \fCvirtualenv\fR parameter is specified.
|
|
."
|
|
."
|
|
." ------ EXAMPLES
|
|
.SH EXAMPLES
|
|
.PP
|
|
.nf
|
|
easy_install name=pip
|
|
.fi
|
|
.PP
|
|
.nf
|
|
easy_install name=flask virtualenv=/webapps/myapp/venv
|
|
.fi
|
|
." ------- AUTHOR
|
|
.SH AUTHOR
|
|
Matt Wright
|
|
.SH SEE ALSO
|
|
.IR ansible (1),
|
|
.I http://ansible.github.com/modules.html#easy-install |