O que devo fazer se um pacote não tiver candidatos de instalação?

4

Estou tentando instalar o php5-sqlite3. Na linha de comando eu digite:

sudo apt-get install php5-sqlite3

Como resultado, obtenho:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package php5-sqlite3 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package php5-sqlite3 has no installation candidate

O que está acontecendo aqui e como posso resolver esse problema?

    
por Roman 28.02.2010 / 13:29

2 respostas

3

Eu acho que você quer o php5-sqlite.

    
por 28.02.2010 / 14:23
2

Você poderia ter encontrado o pacote que estava procurando usando:

$ sudo apt-cache search php sqlite

Mais informações sobre o comando search na página apt-cache man:

search regex [ regex ... ]

search performs a full text search on all available package lists for the regex pattern given. It searches the package names and the descriptions for an occurrence of the regular expression and prints out the package name and the short description. If --full is given then output identical to show is produced for each matched package, and if --names-only is given then the long description is not searched, only the package name is.

Separate arguments can be used to specify multiple search patterns that are anded together.

    
por 28.02.2010 / 15:50