Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ubuntu 12.04 64ビットを使用しており、p4pythonをインストールしています..p4モジュールをインポートしようとしましたが、以下のエラーが表示されます
import p4 トレースバック (最新の呼び出しが最後): ファイル ""、1 行目、ImportError: p4 という名前のモジュールがありません
誰かが私を助けてくれませんか??
やってみませんか
import P4
モジュールの名前が変更されました
新しいモジュール名
The P4Python module has been renamed from p4 to P4. For example: Old: >>> import p4 >>> p4c = p4.P4() New: >>> import P4 >>> p4 = P4.P4()