Reputation: 93
The search functionality in my Sphinx doc has stopped working after upgrading to version 1.5.1. I'm using the sphinx_rtd_theme. How do I downgrade Sphinx to 1.4.9?
Upvotes: 0
Views: 2424
Reputation: 1
In your Terminal: python -m pip install sphinx==1.4.9
python -m pip install sphinx==
Upvotes: 0
Reputation: 537
inorder to install specific version of sphinx .type in terminal :
pip install sphinx==1.4.9
Upvotes: 2