「Pythonのパッケージ管理システム」の版間の差分
提供: Python入門
(ページの作成:「Pythonのパッケージ管理システムには、pipとeasy_installがあります。pipは、easy_installの置き換えとして開発されまし...」) |
(→pip) |
||
(同じ利用者による、間の2版が非表示) | |||
行8: | 行8: | ||
== pipのインストール == | == pipのインストール == | ||
+ | === Ubuntu === | ||
+ | <syntaxhighlight lang="bash"> | ||
+ | $ sudo apt install python-pip | ||
+ | </syntaxhighlight> | ||
+ | === CentOS === | ||
+ | <syntaxhighlight lang="bash"> | ||
+ | $ sudo yum -y install python-pip | ||
+ | </syntaxhighlight> | ||
=== FreeBSD の場合 === | === FreeBSD の場合 === | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
行16: | 行24: | ||
sudo pip install frosted | sudo pip install frosted | ||
</syntaxhighlight> | </syntaxhighlight> | ||
+ | == pip == | ||
+ | * [[Pythonのパッケージ管理システムpipをアップグレードする方法]] | ||
+ | * [[FreeBSDにPythonのpip3をインストールする方法]] | ||
+ | |||
== 関連項目 == | == 関連項目 == | ||
{{introduction}} | {{introduction}} | ||
<!-- vim: filetype=mediawiki | <!-- vim: filetype=mediawiki | ||
--> | --> |
2016年4月9日 (土) 19:07時点における最新版
Pythonのパッケージ管理システムには、pipとeasy_installがあります。pipは、easy_installの置き換えとして開発されました。
読み方
- パッケージ管理システム
- ぱっけーじ かんり しすてむ
概要
pipのインストール
Ubuntu
$ sudo apt install python-pip
CentOS
$ sudo yum -y install python-pip
FreeBSD の場合
sudo pkg install py27-pip
pipの実行例
sudo pip install frosted