Project

General

Profile

Task #269

Updated by Amul Munusamy about 1 month ago

Sphinx documentation setup: 

 ``` 
 sudo apt update 

 sudo apt-get install python3-sphinx 
 mkdir sphinx 
 cd sphinx/ 
 sphinx-build -M html docs/source/ docs/build/ 
 cd .. 
 rm sphinx 
 rmdir sphinx 
 sphinx-build -M html docs/source/ docs/build/ 
 sphinx-quickstart sphinx 
 cd sphinx/ 
 ls 
 cd  
 sphinx-build -M html sphinx/source/ sphinx/build/ 
 cd sphinx/build 
 google-chrome index.html 
 ls 
 cd html 
 ls 
 google-chrome index.html 


 ``` setup

Back