Import Error: No module named '_curses' with Anaconda/Python3.5/Windows7 64bits
See original GitHub issueInstalled version 0.4.1 with pip install curses-menu
I just try to run the sample on the main code page.
Traceback (most recent call last):
File "hci_cmd.py", line 1, in <module>
from cursesmenu import *
File "C:\Anaconda3\lib\site-packages\cursesmenu\__init__.py", line 1, in <module>
from .curses_menu import CursesMenu
File "C:\Anaconda3\lib\site-packages\cursesmenu\curses_menu.py", line 1, in <module>
import curses
File "C:\Anaconda3\lib\curses\__init__.py", line 13, in <module>
from _curses import *
ImportError: No module named '_curses'
Issue Analytics
- State:
- Created 8 years ago
- Comments:13 (1 by maintainers)
Top Results From Across the Web
ImportError: No module named '_curses' when trying to import ...
The curses module is not supported on Windows machines. From the module documentation: While curses is most widely used in the Unix environment, ......
Read more >Why is that showing "no module named curses in python while ...
Why is that showing "no module named curses in python while coding ... py -m pip install curses Or you can just run...
Read more >ModuleNotFoundError: No module named '_curses' : r/Python
I'm trying to import curses but it gives me an error of ModuleNotFoundError: No module named '_curses' how to fix this? I'm running...
Read more >failure to find modules - Python Forum
Every time I try to import a module I get the error: ModuleNotFoundError: No module named '_curses'. When using the commandprompt with py...
Read more >İletişim - Bornovada Masaj Salonu
Yorumu: Hello, My Name is Ash and I Run Tech Know Space https://techknowspace.com We are your Premium GO-TO Service Centre for All Logic...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
try
pip install windows-curses
Python for Windows doesn’t come with curses. You need to visit http://www.lfd.uci.edu/~gohlke/pythonlibs/#curses, download the version of curses that corresponds to your Windows and version of Python, and then pip install the whl file with the python you plan on using.