I've installed and updated tmux
and emacs
via conda
in my default environment, and have these versions in conda list
:
# packages in environment at /home/maxghenis/miniconda3:
#
# Name Version Build Channel
tmux 2.7 hc78d2af_1 conda-forge
emacs 26.1 h3a2ea38_1 conda-forge
Yet when trying to start either tmux
or emacs
, I get this error:
error while loading shared libraries: libtinfo.so.6: cannot open shared object file: No such file or directory
Per error while loading shared libraries: libgsl.so.0: cannot open shared object file: No such file or directory I have 5 libtinfo
files:
(xenial)maxghenis@localhost:~$ sudo find / -name "libtinfo.so"
/home/maxghenis/miniconda3/pkgs/ncurses-5.9-10/lib/libtinfo.so
/home/maxghenis/miniconda3/pkgs/ncurses-6.1-hf484d3e_0/lib/libtinfo.so
/home/maxghenis/miniconda3/envs/tidycensus/lib/libtinfo.so
/home/maxghenis/miniconda3/lib/libtinfo.so
(xenial)maxghenis@localhost:/lib$ sudo find / -name "libtinfo.so.6"
/lib64/libtinfo.so.6
libgsl.so
would help, sincelibtinfo.so
is missing... also, the find command error message is because the predicate is spelled with a lowercasen
inname
, and you should probably look forlibtinfo
instead oflibgsl
... – Peacocklibgsl.so
, you needlibtinfo.so
. Why are you searching for libgsl? – Peacocksudo find / -name "libtinfo.so"
. – Janellajanelletmux
error after runningconda install ncurses
. – Janellajanellencurses
installation info fromconda list
:# Name Version Build Channel ncurses 6.1 hf484d3e_0
– Janellajanelle