mirror of
https://github.com/kennethreitz/maya.git
synced 2026-06-05 23:00:18 +00:00
d8cbdede28
Signed-off-by: Evan.Mattiza <emattiza@gmail.com>
31 lines
720 B
ReStructuredText
31 lines
720 B
ReStructuredText
.. _install:
|
|
Installation
|
|
=============
|
|
|
|
Pip Install Maya
|
|
----------------
|
|
|
|
To install maya, simply use::
|
|
$ pip install maya
|
|
|
|
Source Code
|
|
-----------
|
|
Maya is actively developed on `Github
|
|
<https://github.com/kennethreitz/maya.git>`_
|
|
|
|
You can either clone the public repository::
|
|
|
|
$ git clone git://github.com/kennethreitz/maya.git
|
|
|
|
Or, download the `tarball <https://github.com/kennethreitz/maya/tarball/master>`_::
|
|
|
|
$ curl -OL https://github.com/kennethreitz/maya/tarball/master
|
|
# optionally, zipball is also available (for Windows users).
|
|
|
|
Once you have a copy of the source, you can embed it in your own Python
|
|
package, or install it into your site-packages easily::
|
|
|
|
$ python setup.py install
|
|
|
|
|