forked from ArduPilot/ardupilot_wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSphinxsetup.bat
More file actions
23 lines (16 loc) · 766 Bytes
/
Sphinxsetup.bat
File metadata and controls
23 lines (16 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
rem remove any existing packages thay may cause conflicts
pip uninstall -y sphinx lxml sphinx-rtd-theme sphinxcontrib-youtube sphinxcontrib.vimeo beautifulsoup4
rem Install sphinx
pip install --upgrade sphinx
rem lxml for parameter parsing:
pip install --upgrade lxml
rem Install sphinx theme from ArduPilot repository
pip install --upgrade git+https://github.com/ArduPilot/sphinx_rtd_theme.git
rem and a youtube plugin:
pip install --upgrade git+https://github.com/sphinx-contrib/youtube.git
rem and a vimeo plugin:
pip install --upgrade git+https://github.com/ArduPilot/sphinxcontrib.vimeo.git
rem and a parser to use getting posts from Discourse (forum) and insert in FrontEnd
pip install --upgrade beautifulsoup4
echo "Setup completed successfully!"
pause