web-dev-qa-db-ja.com

MacにBeautiful Soupモジュールをインストールするにはどうすればよいですか?

私は解決策を見つけることなくこれを読みました: http://docs.python.org/install/index.html

これを行う現在の正しい方法は、Pramodコメントのようなpipによるものだと思います

pip install beautifulsoup4

pythonの最後の変更のため、議論 here を参照してください。これは過去にはそうではありませんでした。

「通常の」方法は次のとおりです。

  • Beautiful Soup Webサイトにアクセスします http://www.crummy.com/software/BeautifulSoup/
  • パッケージをダウンロードする
  • 開梱
  • ターミナルウィンドウで、cd結果ディレクトリに
  • タイプpython setup.py install

別の解決策は、easy_installを使用することです。 http://peak.telecommunity.com/DevCenter/EasyInstall )に移動し、そのページの手順を使用してパッケージをインストールし、ターミナルウィンドウに入力します。

easy_install BeautifulSoup4
# for older v3:
# easy_install BeautifulSoup

easy_installは、パッケージのダウンロード、展開、ビルド、およびインストールを処理します。 easy_installを使用する利点は、 PyPI レジストリを照会するため、さまざまなPythonパッケージを検索する方法を知っていることです。 easy_installは、シェルで1つのコマンドを実行するだけで、多くのさまざまなサードパーティパッケージをインストールします。

77
Brian Clapper

ブライアンも私を打ち負かしたが、私はすでに転写を持っているので:

easy_install

aaron@ares ~$ Sudo easy_install BeautifulSoup
Searching for BeautifulSoup
Best match: BeautifulSoup 3.0.7a
Processing BeautifulSoup-3.0.7a-py2.5.Egg
BeautifulSoup 3.0.7a is already the active version in easy-install.pth

Using /Library/Python/2.5/site-packages/BeautifulSoup-3.0.7a-py2.5.Egg
Processing dependencies for BeautifulSoup
Finished processing dependencies for BeautifulSoup

..または通常の退屈な方法:

aaron@ares ~/Downloads$ curl http://www.crummy.com/software/BeautifulSoup/download/BeautifulSoup.tar.gz > bs.tar.gz
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100 71460  100 71460    0     0  84034      0 --:--:-- --:--:-- --:--:--  111k

aaron@ares ~/Downloads$ tar -xzvf bs.tar.gz 
BeautifulSoup-3.1.0.1/
BeautifulSoup-3.1.0.1/BeautifulSoup.py
BeautifulSoup-3.1.0.1/BeautifulSoup.py.3.diff
BeautifulSoup-3.1.0.1/BeautifulSoupTests.py
BeautifulSoup-3.1.0.1/BeautifulSoupTests.py.3.diff
BeautifulSoup-3.1.0.1/CHANGELOG
BeautifulSoup-3.1.0.1/README
BeautifulSoup-3.1.0.1/setup.py
BeautifulSoup-3.1.0.1/testall.sh
BeautifulSoup-3.1.0.1/to3.sh
BeautifulSoup-3.1.0.1/PKG-INFO
BeautifulSoup-3.1.0.1/BeautifulSoup.pyc
BeautifulSoup-3.1.0.1/BeautifulSoupTests.pyc

aaron@ares ~/Downloads$ cd BeautifulSoup-3.1.0.1/

aaron@ares ~/Downloads/BeautifulSoup-3.1.0.1$ Sudo python setup.py install
running install
<... snip ...>
14
Aaron Maenpaa

パッケージをダウンロードして解凍します。ターミナルで、パッケージのディレクトリに移動して入力します

python setup.py install
4
MrSlash