Files
parso/docs/docs/installation.rst
Dave Halter a73af5c709
Some checks failed
Build / lint (push) Has been cancelled
Build / test (false, 3.10) (push) Has been cancelled
Build / test (false, 3.11) (push) Has been cancelled
Build / test (false, 3.12) (push) Has been cancelled
Build / test (false, 3.13) (push) Has been cancelled
Build / test (false, 3.7) (push) Has been cancelled
Build / test (false, 3.8) (push) Has been cancelled
Build / test (false, 3.9) (push) Has been cancelled
Build / coverage (push) Has been cancelled
Fix pip install -e in docs
2025-06-24 12:29:39 +02:00

33 lines
873 B
ReStructuredText

.. include:: ../global.rst
Installation and Configuration
==============================
The preferred way (pip)
-----------------------
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+https://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
<https://github.com/davidhalter/parso/archive/master.zip>`__ 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