We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Traceback (most recent call last): File "tools/create_tf_record.py", line 4, in import utils ImportError: No module named 'utils'
when we type the command python tools/create_tf_record.py -input_dir='f:/speech' into pycharm, it report the above. Could you tell me how to solve it?
The text was updated successfully, but these errors were encountered:
sorry for answer late, you can set PYTHONPATH with project dir。exmaple: my project root is E:\speech\speech-to-text-wavenet2 windows
set PYTHONPATH=E:\speech\speech-to-text-wavenet2 python tools/create_tf_record.py -input_dir='f:/speech'
Liunx
export PYTHONPATH=/mnt/f/speech/speech-to-text-wavenet2 python tools/create_tf_record.py -input_dir='f:/speech'
hope it can help you.
Sorry, something went wrong.
No branches or pull requests
Traceback (most recent call last):
File "tools/create_tf_record.py", line 4, in
import utils
ImportError: No module named 'utils'
when we type the command python tools/create_tf_record.py -input_dir='f:/speech' into pycharm, it report the above.
Could you tell me how to solve it?
The text was updated successfully, but these errors were encountered: