mirror of
https://github.com/kennethreitz/maya.git
synced 2026-06-05 06:46:14 +00:00
30 lines
718 B
ReStructuredText
30 lines
718 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
|