Skip to content

Commit

Permalink
Merge branch 'master' of github.com:pykaldi/conda-package
Browse files Browse the repository at this point in the history
  • Loading branch information
vrmpx committed Aug 22, 2018
2 parents ed9f94c + 57dd993 commit e3e6bf9
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,30 @@ $ git clone https://github.com/pykaldi/conda-package
$ cd conda-package
$ conda-build pykaldi
```

Not so easy way
---------------
1. Create a conda environment
```
conda create -n pykaldipkg python=3.5
conda activate pykaldipkg
```

2. Install conda-build
```
conda install conda-build
```

3. Build the package
```
conda-build pykaldi
```

On success, this will create a .tar.bz2 file in the environment folder (e.g., /home/victor/miniconda3/envs/pykaldipkg/conda-bld/linux-64/pykaldi-0.0.9-hf484d3e_0.tar.bz2). Take note of the location of this file.

4. Install pykaldi conda package
```
conda install [tar.bz2 file]
```

5. (Opt) Test it

0 comments on commit e3e6bf9

Please sign in to comment.