Cuando intento utilizar wget
Me aparece este mensaje de error:
$: wget
dyld: Library not loaded: /opt/local/lib/libnettle.4.dylib
Referenced from: /opt/local/bin/wget
Reason: image not found
Trace/BPT trap: 5
He reinstalado wget
utilizando homebrew ( brew reinstall wget
), actualicé y actualicé mi homebrew, sin embargo esto no ha ayudado.
En mi /opt/local/lib/
carpeta que no puedo encontrar libnettle.4.dylib
Sin embargo, me parece que /opt/local/lib/libnettle.6.dylib
. Intenté resolver el problema simplemente con un enlace simbólico desde /opt/local/lib/libnettle.6.dylib
a /opt/local/lib/libnettle.4.dylib
. Esto tampoco ayudó, pero me dio un nuevo mensaje de error:
$ wget
dyld: Library not loaded: /opt/local/lib/libhogweed.2.dylib
Referenced from: /opt/local/lib/libgnutls.28.dylib
Reason: image not found
Trace/BPT trap: 5
Cuando corro brew info wget
Obtengo esta salida:
wget: stable 1.17.1 (bottled), HEAD
Internet file retriever
https://www.gnu.org/software/wget/
/usr/local/Cellar/wget/1.17.1 (9 files, 1.6M) *
Built from source with: --with-debug
From: https://github.com/Homebrew/homebrew-core/blob/master/Formula/wget.rb
==> Dependencies
Build: xz , pkg-config
Recommended: openssl
Optional: libressl , pcre , libmetalink , gpgme
==> Options
...
¿Cómo puedo solucionarlo?