Não é possível instalar o uwsgi

2
root@ip-10-194-97-94:~# apt-get install uwsgi

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
  uwsgi: Depends: uwsgi-python2.6 (>= 0.9.6.5-0ubuntu1~lucid1) or
                  uwsgi-python3.1 (>= 0.9.6.5-0ubuntu1~lucid1)
E: Broken packages
    
por timger 16.04.2011 / 20:01

3 respostas

1

uwsgi não está nos repositórios padrão. Você precisa de para adicionar um PPA (Arquivo pessoal de pacotes ) e atualize suas fontes:

sudo add-apt-repository ppa:uwsgi/release
sudo apt-get update
sudo apt-get install uwsgi
    
por Lekensteyn 16.04.2011 / 21:39
1

O uWSGI não está bem empacotado. Você deve instalar uwsgi-python ou uwsgi-python3 . Todos os outros pacotes estão marcados como Conflicts , o que é completamente confuso e seguramente errado.

    
por Gabe Mc 08.10.2011 / 00:56
1

Texto original : A melhor forma seria

Traduzido usando o Google Translate : A melhor maneira seria

sudo add-apt-repository ppa:uwsgi/release
sudo apt-get update
sudo apt-get install uwsgi-python
    
por walter angolar 17.02.2012 / 16:03