radian
radian copied to clipboard
libreadline.so.6: cannot open shared object file: No such file or directory
I install radian with conda (version = 4.13), but fail to open it, and the error information is:
Traceback (most recent call last):
File "/home/shpc_100539/miniconda3/bin/radian", line 10, in
I have tried ln -s miniconda/lib/miniconda3/lib/libreadline.so.8.1 miniconda/lib/miniconda3/lib/libreadline.so.6 But there is another error message:
Traceback (most recent call last):
File "/home/shpc_100539/miniconda3/bin/radian", line 8, in
Has anyone made the same mistake, and has it been solved?
When change my operating system from Windows10 to Ubuntu,I spend a week solved lot of env problems.It contains your problem.
1.Find the place of libreadline.so.6
locate libreadline.so.6
2.Add it to ~/.bashrc
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/<your path> ; export LD_LIBRARY_PATH
3.source ~/.bashrc
I am new,the error is seems function needs to dynamically link to file.so,we need to appoint env variable LD_LIBRARY_PATH if the file.so not in /lib or /usr/lib.Hope to help you.