ubuntuでコマンドラインを使用してimutilsをインストールすることができません。私は "pip install imutils"を使用しましたが、エラーを表示しています:ubuntuにimutilsをインストールする
error: could not create '/usr/local/lib/python2.7/dist-packages/imutils': Permission denied
----------------------------------------
Cleaning up...
Command /usr/bin/python -c "import setuptools, tokenize;__file__='/tmp/pip_build_amorthyo/imutils/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-Beko63-record/install-record.txt --single-version-externally-managed --compile failed with error code 1 in /tmp/pip_build_amorthyo/imutils
Storing debug log for failure in /home/amorthyo/.pip/pip.log
誰でも手伝いできますか?
エラーのように、権限が拒否されたため、インストーラはファイルを作成できません。インストーラはrootとして実行する必要があります。 'sudo pip install imutils'を使ってください。 – Oldskool