Closed GoogleCodeExporter closed 9 years ago
To be more specified, when I type the first and second sentences on python
shell, the error message is,
IDLE 2.6
>>> from voiceid.sr import Voiceid
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
from voiceid.sr import Voiceid
File "C:\Python26\Lib\site-packages\voiceid\__init__.py", line 119, in <module>
output_redirect = open('/dev/null','w')
IOError: [Errno 2] No such file or directory: '/dev/null'
>>> from voiceid.db import GMMVoiceDB
Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
from voiceid.db import GMMVoiceDB
File "C:\Python26\Lib\site-packages\voiceid\__init__.py", line 119, in <module>
output_redirect = open('/dev/null','w')
IOError: [Errno 2] No such file or directory: '/dev/null'
Original comment by idiscove...@gmail.com
on 28 Jun 2012 at 9:09
Hi, maybe we do not mention that, even if written in python, this project
(still) does not works on Windows.
We do not made it platform independent, so it's full of explicit file paths for
Linux (tested only on Ubuntu).
This because we use a java library that has problems on Windows.
By the way, the "/dev/null" in Windows is "NUL", if you want to try to 'port'
some code you are welcome :-) .
If you haven't a dual boot system, at the moment we suggest to try Voiceid in a
virtual machine running Ubuntu (we can also give you a "ready to go" one).
However we plan to fix this issue in the future.
Original comment by maurome...@gmail.com
on 2 Jul 2012 at 12:21
Voiceid now works on windows.
Original comment by maurome...@gmail.com
on 15 Feb 2014 at 4:26
Original issue reported on code.google.com by
idiscove...@gmail.com
on 28 Jun 2012 at 9:05