ベリーパイapt-getインストールpip直接abort


今日はベリーパイでpip(pythonのパッケージマネージャ)をインストールしたいのですが、入力すると
sudo apt-get install python-pip  

これを直接くれました
pi@raspberrypi:~ $ sudo apt-get install python-pip
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following additional packages will be installed:
  gir1.2-glib-2.0 libdbus-glib-1-2 libexpat1-dev libgirepository-1.0-1 libpython-all-dev
  libpython-dev libpython2.7 libpython2.7-dev python-all python-all-dev python-cffi-backend
  python-crypto python-cryptography python-dbus python-dev python-enum34 python-gi python-idna
  python-ipaddress python-keyring python-keyrings.alt python-pip-whl python-pkg-resources
  python-pyasn1 python-secretstorage python-setuptools python-six python-wheel python-xdg
  python2.7-dev
Suggested packages:
  python-crypto-dbg python-crypto-doc python-cryptography-doc python-cryptography-vectors
  python-dbus-dbg python-dbus-doc python-enum34-doc python-gi-cairo gnome-keyring libkf5wallet-bin
  gir1.2-gnomekeyring-1.0 python-fs python-gdata python-kde4 python-keyczar doc-base
  python-secretstorage-doc python-setuptools-doc
The following NEW packages will be installed:
  gir1.2-glib-2.0 libdbus-glib-1-2 libexpat1-dev libgirepository-1.0-1 libpython-all-dev
  libpython-dev libpython2.7 libpython2.7-dev python-all python-all-dev python-cffi-backend
  python-crypto python-cryptography python-dbus python-dev python-enum34 python-gi python-idna
  python-ipaddress python-keyring python-keyrings.alt python-pip python-pip-whl python-pkg-resources
  python-pyasn1 python-secretstorage python-setuptools python-six python-wheel python-xdg
  python2.7-dev
0 upgraded, 31 newly installed, 0 to remove and 17 not upgraded.
Need to get 32.8 MB of archives.
After this operation, 51.6 MB of additional disk space will be used.
Do you want to continue? [Y/n] Abort.
pi@raspberrypi:~ $

すべてが正常に[Y/n]選択が現れたときに直接abortになったのはおかしい.幸いapt-getは-yパラメータを提供しています.
sudo apt-get install -y python-pip  

デフォルトの問答はyesで正常にインストールできますが、aptが何らかの理由で直接問答を許さないように設定されている可能性があり、答えを探しているのではないかと推測されます.
続:システムが再起動した後にまたすべて正常になったことを発見して、本当にwhat the f***です!