2

Ubuntu 12.10 64Bit で Python 2.7 を使用すると、次のような問題が発生します。

Python 2.7.3 (default, Sep 26 2012, 21:51:14) 
[GCC 4.7.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import ctypes
>>> ctypes.c_bool()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'c_bool'
>>> 

この問題を解決するにはどうすればよいですか?

4

1 に答える 1

3

作業しているディレクトリに「ctypes.py」というファイルがありますか? その場合は、移動するか、(できれば) 名前を変更します。

于 2013-03-13T20:15:13.177 に答える