xonsh/docs/linux.rst

61 lines
1.1 KiB
ReStructuredText
Raw Normal View History

2016-03-13 21:41:44 -04:00
==========================
Linux Guide
==========================
Installation
============
You can install xonsh using ``conda``, ``pip``, or from source.
2016-03-13 21:41:44 -04:00
**conda:**
.. code-block:: bash
$ conda install -c conda-forge xonsh
2016-03-13 21:41:44 -04:00
.. note:: For the bleeding edge development version use ``conda install -c xonsh/channel/dev xonsh``
**pip:**
.. code-block:: bash
$ pip install xonsh
**source:** Download the source `from github <https://github.com/scopatz/xonsh>`_
(`zip file <https://github.com/scopatz/xonsh/archive/master.zip>`_), then run
the following from the source directory,
.. code-block:: bash
$ python setup.py install
Arch Linux users can install xonsh from the Arch User Repository with e.g.
``yaourt``, ``aura``, ``pacaur``, ``PKGBUILD``, etc...:
2016-03-13 21:41:44 -04:00
**yaourt:**
.. code-block:: bash
$ yaourt -Sa xonsh # yaourt will call sudo when needed
**aura:**
.. code-block:: bash
$ sudo aura -A xonsh
**pacaur:**
2016-03-13 21:41:44 -04:00
.. code-block:: bash
$ pacaur -S xonsh
2016-03-13 21:51:59 -04:00
If you run into any problems, please let us know!
2016-03-13 21:51:59 -04:00
.. include:: add_to_shell.rst
2016-03-13 21:51:59 -04:00
.. include:: dependencies.rst