Instalando o gerenciador de download xtreme via terminal

0

Eu recebo isso no terminal:

The directory '/home/elswerky/.cache/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
The directory '/home/elswerky/.cache/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.

O que devo fazer?

    
por elswerky 06.11.2016 / 08:24

1 resposta

2

Bem, desde que você queria instalá-lo via linha de comando. Aqui está

  1. Faça o download primeiro

    wget -c "http://downloads.sourceforge.net/project/xdman/xdman.deb?r=https%3A%2F%2Fsourceforge.net%2Fprojects%2Fxdman%2F&ts=1478419832&use_mirror=heanet" -O xdman.deb
    
  2. Instale-o com o dpkg

    sudo dpkg -i xdman.deb
    
  3. Corrija qualquer erro de dependência (se houver algum)

    sudo apt-get -f install
    
por Anwar 06.11.2016 / 09:13