GoogleScraper Python スクリプトを Ubuntu 14.04 LTS で動作させようとしていますが、「./GoogleScraper -h」と入力すると次のエラーが発生します。
<code>
./GoogleScraper -h
Traceback (most recent call last):
File "./GoogleScraper", line 5, in <module>
from pkg_resources import load_entry_point
File "/home/roger/env/lib/python3.4/site-packages/pkg_resources.py", line 2716, in <module>
working_set.require(__requires__)
File "/home/roger/env/lib/python3.4/site-packages/pkg_resources.py", line 685, in require
needed = self.resolve(parse_requirements(requirements))
File "/home/roger/env/lib/python3.4/site-packages/pkg_resources.py", line 588, in resolve
raise DistributionNotFound(req)
pkg_resources.DistributionNotFound: aiohttp
</code>
この aiohttp パッケージをインストールするにはどうすればよいですか? 私はググって、少し混乱しました。
これが私の「Python -V」出力です
roger@vbox-ubuntu:~/env/bin$ python -V
Python 2.7.6
roger@vbox-ubuntu:~/env/bin$ python3 -V
Python 3.4.0
また、事前に次のことを実行しました。
virtualenv --python python3 env
source env/bin/activate
pip install GoogleScraper
sudo apt-get install python3-pip
sudo pip3 install aiohttp