Unverified Commit c0697e1c authored by Heewon Jeon(gogamza)'s avatar Heewon Jeon(gogamza) Committed by GitHub
Browse files

Merge pull request #11 from nzxwang/master

More convenient useage of Python3.6
parents 96ef3d2b c1a7df2b
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -38,6 +38,18 @@ Common sense, the first is the right answer.

#### Install

**NB:** `PyKoSpacing` depends on `keras` which only supports `python==3.6.x`. Using [Anaconda](https://www.anaconda.com/) to install 'PyKoSpacing' will prevent interference with system-wide python packages.

##### Anaconda Install
```
conda create --name py-kospacing python=3.6 --yes
conda activate py-kospacing
conda install keras=2.1.5 h5py=2.7.1 --yes
pip install tensorflow==1.6.0 argparse">=1.4.0"
pip install git+https://github.com/haven-jeon/PyKoSpacing.git
```

##### PyPI Install
Pre-requisite:
```
  proper installation of python3
+1 −0
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@ from pykospacing import __version__


setup(name='pykospacing',
      python_requires='==3.6.*',
      version=__version__,
      url='https://github.com/haven-jeon/PyKoSpacing',
      license='GPL-3',