1

次のコマンドを使用して、Arch Linux マシンに pygame をインストールしました。

$ sudo pacman -S python2-pygame

私は pyenv を使用しており、このプロジェクトの仮想環境で Python のバージョンは 2.7.11 です。

プログラムを実行すると

$ python smartcab/agent.py

ここに私が得るものがあります:

Traceback (most recent call last):
  File "smartcab/agent.py", line 2, in <module>
    from environment import Agent, Environment
  File "/home/alex/machine-learning/projects/smartcab/smartcab/environment.py", line 5, in <module>
    from simulator import Simulator
  File "/home/alex/machine-learning/projects/smartcab/smartcab/simulator.py", line 4, in <module>
    import pygame
ImportError: No module named pygame

どうすればこれを解決できますか?

4

1 に答える 1