Следующие пакеты не встретили зависимости после установки .deb файл

Я пытался учиться создавать и использовать .deb файл. Я добавил, что они освобождают как зависимости к этому .deb файл под файлом DEBIAN/control

Package: mydeb
Version: 1.0-1
Section: base
Priority: optional
Architecture: amd64
Depends: ipython (>= 2.4.1-1), decorator (>= 4.0.10), cycler (>= 0.10.0), Cython (>= 0.25.1), dask (>= 0.12.0), imageio (>= 1.6), matplotlib (>= 1.5.3), networkx (>= 1.11), numpy (>= 1.11.2), Pillow (>= 3.4.2), pip (>= 9.0.1), pyglet (>= 1.2.4), pymongo (>= 3.4.0), pyparsing (>= 2.1.10), python-dateutil (>= 2.6.0), pytz (>= 2016.7), requests (>= 2.12.1), scikit-image (>= 0.12.3), scipy (>= 0.18.1), setuptools (>= 28.8.0), six (>= 1.10.0), toolz (>= 0.8.0), wheel (>= 0.30.0a0)         
Maintainer: xxx
Description: xxx

но после того, как я установил тот образец .deb файл, я начал видеть что ошибка во время этих команд

sudo apt-get update & upgrade

Ошибки, я добираюсь,

username@ubuntu:~$ sudo apt-get upgrade
Reading package lists... Done
Building dependency tree       
Reading state information... Done
You might want to run 'apt-get -f install' to correct these.
The following packages have unmet dependencies:
                   <my deb file > : Depends: decorator (>= 4.0.10) but it is not installable
                   Depends: cycler (>= 0.10.0) but it is not installable
                   Depends: cython (>= 0.25.1) but 0.23.4-0ubuntu5 is installed
                   Depends: dask (>= 0.12.0) but it is not installable
                   Depends: imageio (>= 1.6) but it is not installable
                   Depends: matplotlib (>= 1.5.3) but it is not installable
                   Depends: networkx (>= 1.11) but it is not installable
                   Depends: numpy (>= 1.11.2) but it is not installable
                   Depends: pillow (>= 3.4.2) but it is not installable
                   Depends: pip (>= 9.0.1) but it is not installable
                   Depends: pyglet (>= 1.2.4) but it is not installable
                   Depends: pymongo (>= 3.4.0) but it is not installable
                   Depends: pyparsing (>= 2.1.10) but it is not installable
                   Depends: python-dateutil (>= 2.6.0) but 2.4.2-1 is installed
                   Depends: pytz (>= 2016.7) but it is not installable
                   Depends: requests (>= 2.12.1) but it is not installable
                   Depends: scikit-image (>= 0.12.3) but it is not installable
                   Depends: scipy (>= 0.18.1) but it is not installable
                   Depends: setuptools (>= 28.8.0) but it is not installable
                   Depends: six (>= 1.10.0) but it is not installable
                   Depends: toolz (>= 0.8.0) but it is not installable
                   Depends: wheel (>= 0.30.0a0) but it is not installable

так или иначе они освобождают, интегрируют себя к диспетчеру пакетов, и это запускается для становления проблемой после установки моего .deb пакета. Они освобождают, уже установлены в моей системе.

Как я сбрасываю свой диспетчер пакетов или преодолеваю эту проблему?

Спасибо

1
задан 6 February 2017 в 07:47

1 ответ

sudo apt-get -f install

эта команда решена проблема! Спасибо @George

0
ответ дан 8 December 2019 в 06:43

Другие вопросы по тегам:

Похожие вопросы: