where and how should I test this command? when I'm trying i get this Error:
root@localhost:/home/m/Desktop/cmusphinx/g2p-seq2seq-master# g2p-seq2seq --interactive --model /home/m/Desktop/cmusphinx/g2p-seq2seq-cmudict/ bash: g2p-seq2seq: command not found
You need to install g2p-seq2seq with
sudo setup.py install
it will install binary script in /usr/local/bin. If you don't have /usr/local/bin in PATH you should add it or invoke with an absolute path:
/usr/local/bin/g2p-seq2seq --interactive --model /home/m/Desktop/cmusphinx/g2p-seq2seq-cmudict
thanks but when I'm trying this:
python setup.py install
I get this Error:
Reading https://pypi.python.org/simple/tensorflow/ No local packages or working download links found for tensorflow error: Could not find suitable distribution for Requirement.parse('tensorflow')
You need to install tensorflow first as pointed in README installation instructions.
I did it for python 3 but it didnt work. but solved now
I installed the tensorflow for python2 and solved the problem! thanks again
Log in to post a comment.
where and how should I test this command? when I'm trying i get this Error:
You need to install g2p-seq2seq with
it will install binary script in /usr/local/bin. If you don't have /usr/local/bin in PATH you should add it or invoke with an absolute path:
thanks but when I'm trying this:
I get this Error:
You need to install tensorflow first as pointed in README installation instructions.
I did it for python 3 but it didnt work. but solved now
I installed the tensorflow for python2 and solved the problem!
thanks again