私は Ubuntu 13.04 を使用しており、python 2.7 と 3.3.2 がインストールされています。最近、python 3 を使い始めましたが、「pygst」gstreamer モジュールをインポートしようとすると、エラーが発生します。
ImportError:「pygst」という名前のモジュールがありません
Python 2.xでは、すべて正常に動作します
Python 2.7.4 (default, Apr 19 2013, 18:32:33)
[GCC 4.7.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import pygst
>>> exit()
Python 3.3.2 (default, Oct 6 2013, 01:42:16)
[GCC 4.7.3] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import pygst
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named 'pygst'
このモジュールを python 3 にインポートするにはどうすればよいですか?
前もって感謝します!