2

したがって、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()

やってみたので、こうなりました。誰でもアイデアを得ましたか?

4

1 に答える 1

9
Traceback (most recent call last):
    File "<stdin>", line 1, in <module>
    File "curses.py", line 3, in <module>

独自のファイルに curses.py という名前を付けたようです。Python は最初に現在のディレクトリを検索するため、ライブラリと同じ名前を付けることはできません。

于 2013-04-21T23:01:07.733 に答える