From 9b6f7c78a2804d5dcbe077bf4cd214bceba11922 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Wed, 24 May 2017 13:13:23 -0400 Subject: [PATCH] Add an installation documentation. --- docs/docs/installation.rst | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 docs/docs/installation.rst diff --git a/docs/docs/installation.rst b/docs/docs/installation.rst new file mode 100644 index 0000000..2b15db1 --- /dev/null +++ b/docs/docs/installation.rst @@ -0,0 +1,32 @@ +.. include:: ../global.rst + +Installation and Configuration +============================== + +The preferred way +----------------- + +On any system you can install |parso| directly from the Python package index +using pip:: + + sudo pip install parso + + +From git +-------- +If you want to install the current development version (master branch):: + + sudo pip install -e git://github.com/davidhalter/parso.git#egg=parso + + +Manual installation from a downloaded package (not recommended) +--------------------------------------------------------------- + +If you prefer not to use an automated package installer, you can `download +`__ a current copy of +|parso| and install it manually. + +To install it, navigate to the directory containing `setup.py` on your console +and type:: + + sudo python setup.py install