3

I am installing kaldi in ubuntu 18.04. python2.7 is one of the dependencies to install kaldi. I have installed python2.7 by sudo apt-get install pytho2.7. Then to check the prerequisites run extras/check_dependencies.sh. The result showing - "python2.7 is installed, but the python2 binary does not exit. Creating a symlink and adding this to tools/env.sh" What is the next step to do?

Laurent Bristiel
  • 6,819
  • 34
  • 52

2 Answers2

2

You should add symlink to python2.7 binary:

ln -fs /usr/bin/python2.7 $(KALDI_ROOT)/tools/python/python2

Where $(KALDI_ROOT) is a root directory of Kaldi source code

0

i just input 'ln -fs /usr/bin/python2.7'

  • As it’s currently written, your answer is unclear. Please [edit] to add additional details that will help others understand how this addresses the question asked. You can find more information on how to write good answers [in the help center](/help/how-to-ask). – Community Sep 15 '21 at 04:24