I am new in Linux and don't know much about instalation. It's interesting for me to know where does it install the pockesphinx program?
where is continuous.c?
How Linux can find and execute this command: pocketsphinx_continuous -inmic yes ?
I know it seems some of these questions are related to Linux but I like to know the pocketsphinx related questions answer.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I did it, but couldn't find my answer. I can find that file inside the pocketsphinx/src/programs , but I think it's the raw folder! I mean in Windows OS, when you install a program within the raw folder(I mean the folder contains the setup file), it will installs the program in other location and you can remove the raw folder.
But in Linux it seems the story is difference and there is no installation folder outside the raw folder because I couldn't find any file with the name continuous.c outside the raw folder?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
As Nickolay say, you can find that by research in google. to find the directory of executable in Linux use the command whereis <executablefile>, for example whereis pocketsphinx_continuous. user executable files are located in /usr/local/bin/ . Linux can find the command by looking to the content of the environment variable PATH . you can display the content with echo $PATH.</executablefile>
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Thanks a lot Bilal,
I have another question: I think pocketsphinx_continuous is the executable made by compiling continuous.c. Am I true?
If yes, where is continuous.c ?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I am new in Linux and don't know much about instalation. It's interesting for me to know where does it install the pockesphinx program?
where is continuous.c?
How Linux can find and execute this command:
pocketsphinx_continuous -inmic yes?I know it seems some of these questions are related to Linux but I like to know the pocketsphinx related questions answer.
Is this a very bad question?
Not really "bad", but you can do this research yourself first.
I did it, but couldn't find my answer. I can find that file inside the
pocketsphinx/src/programs, but I think it's the raw folder! I mean in Windows OS, when you install a program within the raw folder(I mean the folder contains the setup file), it will installs the program in other location and you can remove the raw folder.But in Linux it seems the story is difference and there is no installation folder outside the raw folder because I couldn't find any file with the name
continuous.coutside the raw folder?As Nickolay say, you can find that by research in google. to find the directory of executable in Linux use the command whereis <executablefile>, for example whereis pocketsphinx_continuous. user executable files are located in /usr/local/bin/ . Linux can find the command by looking to the content of the environment variable PATH . you can display the content with echo $PATH.</executablefile>
Thanks a lot Bilal,
I have another question: I think
pocketsphinx_continuousis the executable made by compilingcontinuous.c. Am I true?If yes, where is
continuous.c?