当前位置: 首页 > 工具软件 > ICU4C > 使用案例 >

“uconv not found on PATH. You will have to install ICU4C“(Linux下)

方祺
2023-12-01

安装kaldi的时候遇到的工具问题,不是大问题,但是如果现去找需要花很多时间,就写上自己的处理

这个包是可以在网上下载的,现在github也有的,但是github会经常遇到下载很慢的问题,现在我用的是gitee网站,可以通过其中的镜像下载仓库。

icu的我仓库为https://gitee.com/guo-xiaobo-zayn/icu.git

这个是icu68.1的版本

下载之后大家进行解压,如果需要安装ICU4C就进入icu文件夹下面的icu4c/source,然后其中有一个文件叫做runConfigureICU,通过chmod赋予文件执行权限

然后打开后看看自己的输入参数,需要输入platform即操作平台,


    AIX                 Use the IBM Visual Age xlc_r/xlC_r compilers on AIX
    AIX/GCC             Use the GNU gcc/g++ compilers on AIX
    Cygwin              Use the GNU gcc/g++ compilers on Cygwin
    Cygwin/MSVC         Use the Microsoft Visual C++ compiler on Cygwin
    Cygwin/MSVC2005     Use the Microsoft Visual C++ 2005 compiler on Cygwin
    Cygwin/ICL          Use the Intel C++ compiler on Cygwin
    FreeBSD             Use the clang/clang++ or GNU gcc/g++ compilers on FreeBSD
    HP-UX/ACC           Use the HP ANSI C/Advanced C++ compilers on HP-UX 11
    IBMi                Use the iCC compilers on IBM i, i5/OS, OS/400
    Linux               Use the clang/clang++ or GNU gcc/g++ compilers on Linux
    Linux/gcc           Use the GNU gcc/g++ compilers on Linux
    Linux/ECC           Use the Intel ECC compiler on Linux
    Linux/ICC           Use the Intel ICC compiler on Linux
    Linux/VA            Use the IBM Visual Age compiler on Power PC Linux
    MacOSX              Use the default compilers on MacOS X (Darwin)
    MacOSX/GCC          Use the GNU gcc/g++ compilers on MacOSX (Darwin)
    MinGW               Use the GNU gcc/g++ compilers on MinGW
    MSYS/MSVC           Use the Microsoft Visual C++ computer on MSYS
    QNX                 Use the QNX QCC compiler on QNX/Neutrino
    Solaris             Use the Sun cc/CC compilers on Solaris
    Solaris/GCC         Use the GNU gcc/g++ compilers on Solaris
    SolarisX86          Use the Sun cc/CC compilers on Solaris x86
    TRU64V5.1/CXX       Use the Compaq cxx compiler on Tru64 (OSF)
    zOS                 Use the IBM cxx compiler on z/OS (os/390)
    zOSV1R2             Use the IBM cxx compiler for z/OS 1.2

之后既可以通过执行./runConfigureICU [你的平台]

例如我的是

./runConfigureICU Linux/gcc

执行完之后就可以进行安装了
 

./configure

make

make check

make install

 

 类似资料: