首先下载ekho软件源码,http://www.eguidedog.net/ekho_cn.php 可以到这个网站下载,linux下使用的,得到的源码文件名为ekho-5.7.tar.xz
解压:xz -d ekho-5.7.tar.xz 得到 ekho-5.7.tar 然后 tar xf ekho-5.7.tar 解压成功
进入解压后的文件夹中: cd ekho-5.7
看一下具体的信息,一般先看README文件
然后:./configure
报错:
configure: error: in `/home/alei/software/ekho-5.7':
configure: error: sndfile test failed
See `config.log' for more details
这个是由于缺少必备的库引起的,具体参考源码文件INSTALL
1 ===== INSTALL (for Linux) =====
2 You need to have following libraries first:
3 * libsndfile1-dev (http://www.mega-nerd.com/libsndfile/)
4 * libpulse-dev
5 * libncurses5-dev (required by --enable-festival)
6 * libestools2.1-dev (optionally required by --enable-festival)
7 * libFestival (optionally required by --enable-festival)
8 * libvorbis-dev (optional)
9 * liblame-dev (optional)
10 * libdotconf-dev (required by --enable-speechd)
把库文件安装好然后
make && sudo make install
就ok了