Skip to content

Commit 3b1a5e7

Browse files
authored
Merge pull request #52 from shineware/PyKOMORAN-50
README 내의 모델명 수정
2 parents 4b24cc3 + d6d0a67 commit 3b1a5e7

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

README.en.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919

2020
* To use PyKomoran, the following requirements must be installed
2121
* Java 8+ JDK Environment
22+
* We recommend you use OracleJDK / OpenJDK.
2223
* Python 3.4+
2324
* We recommend you use Python 3.4 or higher.
2425
* [Py4J](https://www.py4j.org/install.html), 0.10 (or higher)
@@ -50,7 +51,7 @@
5051

5152
```python
5253
from PyKomoran import *
53-
komoran = Komoran(DEFAULT_MODEL['LIGHT'])
54+
komoran = Komoran("STABLE")
5455
```
5556

5657
* After then, run analyzing method.

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919

2020
* PyKomoran을 이용하기 위해서는 다음의 요구사항이 설치되어 있어야 합니다.
2121
* Java 8 이상의 JDK 환경
22+
* OracleJDK 또는 OpenJDK를 권장합니다.
2223
* Python 3.4 이상
2324
* Python 3.4 이상을 지원합니다.
2425
* [Py4J](https://www.py4j.org/install.html), 0.10 이상
@@ -50,7 +51,7 @@
5051

5152
```python
5253
from PyKomoran import *
53-
komoran = Komoran(DEFAULT_MODEL['LIGHT'])
54+
komoran = Komoran("STABLE")
5455
```
5556

5657
* 분석 메소드를 이용하여 문장을 분석합니다.

docs/README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
## 소개
44

5-
https://docs.komoran.kr
5+
[https://pydocs.komoran.kr](https://pydocs.komoran.kr)
66

7-
* 이 저장소는 [KOMORAN 문서와 튜토리얼 등을 위한 정적 사이트(Static site)](https://docs.komoran.kr)를 생성/관리하기 위해 만들었습니다.
7+
* 이 저장소는 [KOMORAN 문서와 튜토리얼 등을 위한 정적 사이트(Static site)](https://pydocs.komoran.kr)를 생성/관리하기 위해 만들었습니다.
88
* [Sphinx](http://www.sphinx-doc.org/en/master/)[GitHub Pages](https://pages.github.com/)를 이용하고 있습니다.
99

1010
## 실행하기
@@ -17,11 +17,12 @@ https://docs.komoran.kr
1717
* pip (for Python 3.x)
1818

1919
### 저장소 복제
20+
2021
먼저 저장소를 복제합니다. Git 사용법은 [여기](https://git-scm.com/book/ko/)를 참고해주시기 바랍니다.
2122

2223
```sh
23-
git clone https://github.com/shineware/KOMORANDocs
24-
cd docs
24+
git clone https://github.com/shineware/PyKOMORAN
25+
cd PyKOMORAN/docs
2526
```
2627

2728
### 의존성 설치

0 commit comments

Comments
 (0)