「Pythonのパッケージ管理システム」の版間の差分
提供: Python入門
(→pipのインストール) |
(→pip) |
||
(同じ利用者による、間の1版が非表示) | |||
行20: | 行20: | ||
sudo pkg install py27-pip | sudo pkg install py27-pip | ||
</syntaxhighlight> | </syntaxhighlight> | ||
− | |||
== pipの実行例 == | == pipの実行例 == | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
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