I am using Eclipse with PyDev and Python 3.4.1. I would like to try the curses lib included with Python. I have read the documentation for Python 3.4.1 and the tutorial there gives the code:
import curses
stdscr = curses.initscr()
However, I am getting this error:
Traceback (most recent call last):
File "D:\Programming\Eclipse Standard IDE\Projects\LCD Display\src\main.py", line 9, in import curses File "D:\Programming\Python 3.4.1\Lib\curses__init__.py", line 13, in from _curses import * ImportError: No module named '_curses'
In the curses lib file the first line is from _curses import *
.
- What should I make of this?
- Is this an error in the lib file or is this for legacy support?
- How can I fix this?
EDIT: I've tried switching interpreters to the Pythonw.exe (3.4.1) to no avail and the 2.7.8 does not work either. I believe I have already set up PyDev properly (according to the website).