Ubuntu 15.04でpython-pip
を使用してapt-get
をインストールしようとしていますが、見つからないというエラーが表示されます。
ubuntu@ubuntu:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 15.04
Release: 15.04
Codename: vivid
ubuntu@ubuntu:~$ Sudo apt-get install python-pip
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package python-pip
ubuntu@ubuntu:~$
ランチパッドによると、存在するはずです。
https://launchpad.net/ubuntu/vivid/+source/python-pip
私の/etc/apt/sources.list
は次のようになります
ubuntu@ubuntu:~$ Sudo cat /etc/apt/sources.list
deb cdrom:[Ubuntu 15.04 _Vivid Vervet_ - Release AMD64 (20150422)]/ vivid main restricted
deb http://archive.ubuntu.com/ubuntu/ vivid main restricted
deb http://security.ubuntu.com/ubuntu/ vivid-security main restricted
deb http://archive.ubuntu.com/ubuntu/ vivid-updates main restricted
何か案は?
python-pip
パッケージはuniverse
リポジトリで利用可能ですが、/etc/apt/sources.list
にはuniverse
リポジトリのエントリが含まれていないため、そこから何もダウンロードできません追加しない限りレポ。
universe
リポジトリを/etc/apt/sources.list
に追加するには、次を実行します。
echo "deb http://archive.ubuntu.com/ubuntu/ vivid universe" | Sudo tee -a "/etc/apt/sources.list"
ソースファイルに興味がある場合は、これも追加します。
echo "deb-src http://archive.ubuntu.com/ubuntu/ vivid universe" | Sudo tee -a "/etc/apt/sources.list"
Sudo apt-get update
を実行すると、次の方法でpython-pip
をインストールできます。
Sudo apt-get install python-pip