したがって、curses がインストールされているので、dpkg で確認しました。今、インポートしようとすると、これが起こります
Python 2.7.3 (default, Jan 13 2013, 11:20:46)
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import curses
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "curses.py", line 3, in <module>
myscreen = curses.initscr()
AttributeError: 'module' object has no attribute 'initscr'
なぜそれが起こるのかわかりません-最初にこれを実行しようとしました:
import curses
myscreen = curses.initscr()
myscreen.border(0)
myscreen.addstr(12, 25, "Python curses in action!")
myscreen.refresh()
myscreen.getch()
curses.endwin()
やってみたので、こうなりました。誰でもアイデアを得ましたか?