「Python WindowsにPIPをインストール」の版間の差分
ナビゲーションに移動
検索に移動
(同じ利用者による、間の2版が非表示) | |||
1行目: | 1行目: | ||
− | ==Python WindowsにPIPをインストール== | + | ==[[Python WindowsにPIPをインストール]]== |
− | [[Python][Beautiful Soup]] | + | [[Python]] | [[Beautiful Soup]] | |
{{amazon|4873113938}} | {{amazon|4873113938}} | ||
− | *PIP:パッケージのインストールと管理ツール | + | *[[PIP]]:パッケージのインストールと管理ツール |
*http://www.pip-installer.org/en/latest/ | *http://www.pip-installer.org/en/latest/ | ||
− | ==== | + | ====[[PIP]]をインストールするために、setuptoolsのインストールを行う==== |
− | <blockquote> | + | <blockquote>[[Python]]2.7.9からは、PIPが同梱されている。 python -m pip install virtualenv などとして利用できる</blockquote> |
*https://pypi.python.org/pypi/setuptools/1.1.6#windows | *https://pypi.python.org/pypi/setuptools/1.1.6#windows | ||
=====ez_setup.pyをローカルにダウンロードして実行===== | =====ez_setup.pyをローカルにダウンロードして実行===== | ||
*https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py | *https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py | ||
− | <blockquote>setuptools の更新は最近止まっていて、フォークした distribute | + | <blockquote>setuptools の更新は最近止まっていて、フォークした distribute の方を使った方がよいようだ。[[Windows]]8.1 で試したら、setuptoolsではエラーになったが、distributeでは成功した。以下をダウンロードして、実行する </blockquote> |
*http://python-distribute.org/distribute_setup.py | *http://python-distribute.org/distribute_setup.py | ||
> python .\distribute_setup.py | > python .\distribute_setup.py | ||
*easy_install.exeがインストールされる | *easy_install.exeがインストールされる | ||
− | Installing easy_install.exe script to C:\ | + | Installing easy_install.exe script to C:\[[Python]]27\Scripts |
− | ==== | + | ====[[PIP]]のインストール==== |
− | *easy_install | + | *easy_install を利用して[[PIP]]をインストール |
− | C:\ | + | C:\[[Python]]27\Scripts>easy_install pip |
Searching for pip | Searching for pip | ||
− | + | [[R]]eading https://pypi.python.org/simple/pip/ | |
Best match: pip 1.4.1 | Best match: pip 1.4.1 | ||
Downloading https://pypi.python.org/packages/source/p/pip/pip-1.4.1.tar.gz#md5=6afbb46aeb48abac658d4 | Downloading https://pypi.python.org/packages/source/p/pip/pip-1.4.1.tar.gz#md5=6afbb46aeb48abac658d4 | ||
29行目: | 29行目: | ||
Finished processing dependencies for pip | Finished processing dependencies for pip | ||
− | ===== | + | =====[[Python]]2.7.9===== |
− | E:\Programs\ | + | E:\Programs\[[Python]]27\Lib\site-packages> python .\easy_install.py pip |
− | ==== | + | ====[[PIP]]を利用してパッケージをインストールする例==== |
*python-dateutilをインストールする | *python-dateutilをインストールする | ||
− | C:\ | + | C:\[[Python]]27\Scripts>pip install python-dateutil |
Downloading/unpacking python-dateutil | Downloading/unpacking python-dateutil | ||
Downloading python-dateutil-2.1.tar.gz (152kB): 152kB downloaded | Downloading python-dateutil-2.1.tar.gz (152kB): 152kB downloaded | ||
− | + | [[R]]unning setup.py egg_info for package python-dateutil | |
Downloading/unpacking six (from python-dateutil) | Downloading/unpacking six (from python-dateutil) | ||
Downloading six-1.4.1.tar.gz | Downloading six-1.4.1.tar.gz | ||
− | + | [[R]]unning setup.py egg_info for package six | |
Installing collected packages: python-dateutil, six | Installing collected packages: python-dateutil, six | ||
− | + | [[R]]unning setup.py install for python-dateutil | |
− | + | [[R]]unning setup.py install for six | |
Successfully installed python-dateutil six | Successfully installed python-dateutil six | ||
Cleaning up... | Cleaning up... | ||
− | ===== | + | =====[[Python]]2.7.9===== |
− | PS C:\Users\piroto> python -m pip install | + | PS C:\Users\piroto> python -m pip install [[vi]]rtualenv |
− | Collecting | + | Collecting [[vi]]rtualenv |
− | Downloading | + | Downloading [[vi]]rtualenv-12.0.5-py2.py3-none-any.whl (1.8MB) |
100% |################################| 1.8MB 660kB/s ta 0:00:01 | 100% |################################| 1.8MB 660kB/s ta 0:00:01 | ||
− | Installing collected packages: | + | Installing collected packages: [[vi]]rtualenv |
− | Successfully installed | + | Successfully installed [[vi]]rtualenv-12.0.5 |
− | ==== | + | ====[[CentOS]]にPIPをインストール==== |
− | *CentOS6にPython2.7をインストール | + | *[[CentOS6にPython2.7をインストール]] |
− | ==== | + | ====[[Windows]]用の非公式バイナリ==== |
*http://www.lfd.uci.edu/~gohlke/pythonlibs | *http://www.lfd.uci.edu/~gohlke/pythonlibs | ||
pip install [Local File Location] | pip install [Local File Location] |
2020年2月16日 (日) 04:31時点における最新版
目次
Python WindowsにPIPをインストール
Python | Beautiful Soup |
- PIP:パッケージのインストールと管理ツール
- http://www.pip-installer.org/en/latest/
PIPをインストールするために、setuptoolsのインストールを行う
<blockquote>Python2.7.9からは、PIPが同梱されている。 python -m pip install virtualenv などとして利用できる</blockquote>
ez_setup.pyをローカルにダウンロードして実行
<blockquote>setuptools の更新は最近止まっていて、フォークした distribute の方を使った方がよいようだ。Windows8.1 で試したら、setuptoolsではエラーになったが、distributeでは成功した。以下をダウンロードして、実行する </blockquote>
> python .\distribute_setup.py
- easy_install.exeがインストールされる
Installing easy_install.exe script to C:\Python27\Scripts
PIPのインストール
- easy_install を利用してPIPをインストール
C:\Python27\Scripts>easy_install pip Searching for pip Reading https://pypi.python.org/simple/pip/ Best match: pip 1.4.1 Downloading https://pypi.python.org/packages/source/p/pip/pip-1.4.1.tar.gz#md5=6afbb46aeb48abac658d4 : Installed c:\python27\lib\site-packages\pip-1.4.1-py2.7.egg Processing dependencies for pip Finished processing dependencies for pip
Python2.7.9
E:\Programs\Python27\Lib\site-packages> python .\easy_install.py pip
PIPを利用してパッケージをインストールする例
- python-dateutilをインストールする
C:\Python27\Scripts>pip install python-dateutil Downloading/unpacking python-dateutil Downloading python-dateutil-2.1.tar.gz (152kB): 152kB downloaded Running setup.py egg_info for package python-dateutil Downloading/unpacking six (from python-dateutil) Downloading six-1.4.1.tar.gz Running setup.py egg_info for package six Installing collected packages: python-dateutil, six Running setup.py install for python-dateutil Running setup.py install for six Successfully installed python-dateutil six Cleaning up...
Python2.7.9
PS C:\Users\piroto> python -m pip install virtualenv Collecting virtualenv Downloading virtualenv-12.0.5-py2.py3-none-any.whl (1.8MB) 100% |################################| 1.8MB 660kB/s ta 0:00:01 Installing collected packages: virtualenv Successfully installed virtualenv-12.0.5
CentOSにPIPをインストール
Windows用の非公式バイナリ
pip install [Local File Location]
© 2006 矢木浩人