sudo apt-get -f install
este comando resolveu o problema! Obrigado @George
Eu estava tentando aprender a criar e usar o arquivo .deb. Eu adicionei essas libs como dependências para aquele arquivo .deb sob DEBIAN / control file
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
mas depois que eu instalei esse arquivo .deb de amostra, comecei a ver esse erro durante esses comandos
sudo apt-get update & upgrade
Os erros, estou recebendo são
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
de alguma forma essas bibliotecas se integram ao gerenciador de pacotes e isso é iniciado para se tornar um problema depois de instalar o meu pacote .deb. Essas libs já estão instaladas no meu sistema.
Como faço para redefinir meu gerenciador de pacotes ou superar esse problema?
Obrigado
sudo apt-get -f install
este comando resolveu o problema! Obrigado @George