-1

beautifulsoup4次のコマンドを使用して、Fedora 19 に呼び出された python モジュールをインストールしようとしています。

pip install beautifulsoup4

しかし、ターミナルは私にエラーを返します:

Downloading/unpacking beautifulsoup4
  Running setup.py egg_info for package beautifulsoup4

Installing collected packages: beautifulsoup4
  Running setup.py install for beautifulsoup4
    error: could not create '/usr/lib/python2.7/site-packages/bs4': Permission denied
    Complete output from command /usr/bin/python -c "import setuptools;__file__='/tmp/pip-build-misha/beautifulsoup4/setup.py';exec(compile(open(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-kevEjw-record/install-record.txt --single-version-externally-managed:
    running install

running build

running build_py

running install_lib

creating /usr/lib/python2.7/site-packages/bs4

error: could not create '/usr/lib/python2.7/site-packages/bs4': Permission denied

----------------------------------------
Command /usr/bin/python -c "import setuptools;__file__='/tmp/pip-build-misha/beautifulsoup4/setup.py';exec(compile(open(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-kevEjw-record/install-record.txt --single-version-externally-managed failed with error code 1 in /tmp/pip-build-misha/beautifulsoup4
Storing complete log in /home/misha/.pip/pip.log

どうすれば修正できますか?

ありがとう。

4

2 に答える 2

4

ライブラリをインストールする権限がありません。興味がある場合は、次のようにsudoers入力してください。

sudo pip install beautifulsoup4

何もインストールする権限がない場合は、 を使用[virtualenv][1]して作業環境を作成し、必要なものをすべてインストールできます。

于 2013-09-26T12:44:36.657 に答える