我无法在 Ubuntu 17.10 上运行 jcontrol

我无法在 Ubuntu 17.10 上运行 jcontrol
$ jcontrol 
usage: jcontrol host [portnum (def=10500)]
on terminal :apt-get install julius

我不知道问题出在哪里

答案1

   jcontrol is a simple console program to control julius running on other
       host via network API. It can send command to Julius, and receive
       messages from Julius.

       When invoked, jcontrol tries to connect to Julius running in "module
       mode" on specified hostname. After connection established, jcontrol
       waits for user commands from standard input.

       When user types a command to jcontrol, it will be interpreted and cor-
       responding API command will be sent to Julius. When a message is
       received from Julius, its content will be output to standard output.

有关 API 的详细信息,请参阅相关文件。

主机名是必需参数,正如您的输出所指定,默认端口号是 10500。

OPTIONS

        hostname
          Host name where Julius is runnning in module mode.

        portnum
          port number (default: 10500)

还很清楚,必须在命令行指定的主机上安装并以模块模式运行 julius。

资料来源:

http://manpages.ubuntu.com/manpages/xenial/man1/jcontrol.1.html

http://www.jcontrol.org/documentation/index_en.html

相关内容