Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
sight-doc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sight
sight-doc
Merge requests
!5
fix(README): windows compilation instructions
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fix(README): windows compilation instructions
fix/readme-win-compilation
into
dev
Overview
6
Commits
3
Pipelines
0
Changes
1
Merged
Luis MENDOZA
requested to merge
fix/readme-win-compilation
into
dev
6 years ago
Overview
6
Commits
3
Pipelines
0
Changes
1
Expand
What does this MR do?
Fixes style and instruction for windows documentation compilation
How to test it?
Read it?
3
0
Merge request reports
Compare
dev
version 2
71c17098
6 years ago
version 1
8634ca3e
6 years ago
dev (base)
and
latest version
latest version
a9b1a0c7
3 commits,
6 years ago
version 2
71c17098
2 commits,
6 years ago
version 1
8634ca3e
1 commit,
6 years ago
1 file
+
17
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
README.md
+
17
−
4
Options
@@ -20,11 +20,24 @@ Building the documentation with Windows
=======================================
In order to build this documentation, you will need to install Sphinx (especially the sphinx-build command).
First, you need to install
`
Python
<
https://www.python.org/downloads/
>`
_
First, you need to install
[
Python
](
https://www.python.org/downloads/
)
- Add Python to your PATH : SET PATH=%PATH%;C:\Python27
- Add Python Script : SET PATH=%PATH%;C:\Python27\Scripts
- Use pip to install Sphinx : pip install sphinx
-
Add Python to your PATH
```
SET PATH=%PATH%;C:\Python
```
-
Add Python Script
```
SET PATH=%PATH%;C:\Python\Scripts
```
-
Use pip to install Sphinx
```
pip install sphinx
```
-
Use pip to install Sphinx rtd-theme
```
pip install sphinx_rtd_theme
```
Once sphinx is installed, launch the following command at the root of your local copy to generate html documentation:
```
Loading