web-dev-qa-db-ja.com

python-pipパッケージがライブUSBとして実行されているubuntu 15.04で見つかりません

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

何か案は?

2
Paul Rooney

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
4
heemayl