mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2026-09-03 20:52:55 -05:00
Support PEP-440 version spec for developers.
This commit is contained in:
+22
-3
@@ -8,10 +8,29 @@ This is the Sphinx documentation generator, see http://sphinx-doc.org/.
|
||||
Installing
|
||||
==========
|
||||
|
||||
Use ``setup.py``::
|
||||
Install from PyPI to use stable version::
|
||||
|
||||
python setup.py build
|
||||
sudo python setup.py install
|
||||
pip install -U sphinx
|
||||
|
||||
Install from PyPI to use beta version::
|
||||
|
||||
pip install -U --pre sphinx
|
||||
|
||||
Install from newest dev version in stable branch::
|
||||
|
||||
pip install git+https://github.com/sphinx-doc/sphinx@stable
|
||||
|
||||
Install from newest dev version in master branch::
|
||||
|
||||
pip install git+https://github.com/sphinx-doc/sphinx
|
||||
|
||||
Install from cloned source::
|
||||
|
||||
pip install .
|
||||
|
||||
Install from cloned source as editable::
|
||||
|
||||
pip install -e .
|
||||
|
||||
|
||||
Reading the docs
|
||||
|
||||
Reference in New Issue
Block a user