"Sphinx-doc"의 두 판 사이의 차이

오픈소스 비즈니스 컨설팅
둘러보기로 가기 검색하러 가기
(새 문서: Sphinx 이다. * 홈페이지 : http://www.sphinx-doc.org/en/master/ == 참고 문헌 == * Rst)
 
잔글
 
(같은 사용자의 중간 판 8개는 보이지 않습니다)
2번째 줄: 2번째 줄:
  
 
* 홈페이지 : http://www.sphinx-doc.org/en/master/
 
* 홈페이지 : http://www.sphinx-doc.org/en/master/
 +
* 매뉴얼
 +
:* 한글 매뉴얼 : https://docs-korean-sphinx.readthedocs.io/ko/docs-korean/
 +
:* http://www.sphinx-doc.org/en/master/usage/quickstart.html
 +
:* https://matplotlib.org/sampledoc/index.html
 +
* 호스팅 : https://readthedocs.org/
 +
* 라이선스 : BSD License
 +
 +
== 설치 ==
 +
 +
=== CentOS 7에서 설치 ===
 +
 +
yum list | grep sphinx
 +
# yum -y install python-sphinx
 +
yum -y install python2-sphinx
 +
 +
#--- Sphinx 폴더 생성
 +
mkdir -p /work/sphinx
 +
cd /work/sphinx
 +
sphinx-quickstart
 +
 +
make html
  
 
== 참고 문헌 ==
 
== 참고 문헌 ==
  
 
* [[Rst]]
 
* [[Rst]]
 +
 +
[[Category:Python]]

2018년 9월 3일 (월) 23:17 기준 최신판

Sphinx 이다.

설치

CentOS 7에서 설치

yum list | grep sphinx
# yum -y install python-sphinx
yum -y install python2-sphinx

#--- Sphinx 폴더 생성
mkdir -p /work/sphinx
cd /work/sphinx
sphinx-quickstart

make html

참고 문헌