-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
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
not working on windows wint mingw64 console #36
Comments
after installing missing modules manually getting the answer "Redirection is not supported"
|
|
I don't own a Windows system, so I can't look into this. But you can probably google it and find out if curses is fully supported on the windows command shell like you're using. By "fully" I mean that all the attributes and stuff are translated (in theory, I guess it should work just fine, but it may not be so in practice). |
heh, I will try :) What I can add from my side that I was trying to run it in PowerShell/cmd but it is exiting with the same exit error
Also was able to get the first screen by the https://conemu.github.io/ soft but after typing the first letter i got this
|
Yeah, the hicolor part is very unix specific, so just skip those TERM parts. As to div by zero, seems elapsed doesn't have a value. Just return any float value there while testing (or check if elapsed is zero). |
Trerminal windows 10 > MINGW64
$ python --version
Python 3.6.5
$ python -m wpm
Traceback (most recent call last):
File "C:\Python36\lib\runpy.py", line 193, in run_module_as_main
"main", mod_spec)
File "C:\Python36\lib\runpy.py", line 85, in run_code
exec(code, run_globals)
File "C:\temp\wpm\wpm_main.py", line 14, in
import wpm.commandline
File "C:\temp\wpm\wpm\commandline.py", line 22, in
import wpm.config
File "C:\temp\wpm\wpm\config.py", line 14, in
import curses
File "C:\Python36\lib\curses_init.py", line 13, in
from _curses import *
ModuleNotFoundError: No module named '_curses'
The text was updated successfully, but these errors were encountered: