MiKTeX no Ubuntu 14.04: NÃO foi possível encontrar CURL

0

Estou tentando instalar o MiKTeX no Ubuntu 14.04 LTS. Estou baixando as dependências uma a uma, mas abaixo está onde eu fiquei preso:

CMake Warning at /usr/share/cmake-2.8/Modules/FindQt4.cmake:659 (message):
  /usr/bin/qmake reported QT_INSTALL_LIBS as "/usr/lib/x86_64-linux-gnu" but
  QtCore could not be found there.  Qt is NOT installed correctly for the
  target build environment.
Call Stack (most recent call first):
  CMakeLists.txt:347 (find_package)

CMake Error at /usr/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:108 (message):
  Could NOT find CURL (missing: CURL_LIBRARY CURL_INCLUDE_DIR)
Call Stack (most recent call first):
  /usr/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:315 (_FPHSA_FAILURE_MESSAGE)
  /usr/share/cmake-2.8/Modules/FindCURL.cmake:54 (FIND_PACKAGE_HANDLE_STANDARD_ARGS)
  CMakeLists.txt:354 (find_package)

-- Configuring incomplete, errors occurred!
See also "/home/user/Downloads/2.9/CMakeFiles/CMakeOutput.log".
See also "/home/user/Downloads/2.9/CMakeFiles/CMakeError.log".

Quanto a CURL, eu tenho isso. Quando coloco curl -V , obtenho o seguinte:

curl 7.35.0 (x86_64-pc-linux-gnu) libcurl/7.35.0 OpenSSL/1.0.1f zlib/1.2.8 libidn/1.28 librtmp/2.3
Protocols: dict file ftp ftps gopher http https imap imaps ldap ldaps pop3 pop3s rtmp rtsp smtp smtps telnet tftp 
Features: AsynchDNS GSS-Negotiate IDN IPv6 Largefile NTLM NTLM_WB SSL libz TLS-SRP

Além disso, qual QT devo instalar?

    
por Louis 27.05.2014 / 15:09

1 resposta

1

O MikTeX não é empacotado para o Ubuntu, mas é bastante fácil de instalar se você seguir a documentação .

Comece removendo todos os pacotes que você tenha instalado manualmente (por exemplo, CURL). Em seguida, instale as dependências dos repositórios:

sudo apt-get install build-essential libcurl3-openssl-dev

Configure e compile (dentro da pasta de origem do MikTeX):

./configure && make

E, finalmente, instale-o:

sudo make install

    
por Luís de Sousa 27.05.2014 / 15:27