我在其他地方也看到过类似的问题,但我似乎找不到一个适合我的解决方案。我正在尝试在anaconda上使用python运行samtools。我正在运行macosx catalina。以下是错误代码
dyld: Library not loaded: @rpath/libcrypto.1.0.0.dylib
Referenced from: /Users/me/anaconda3/bin/samtools
Reason: image not found
zsh: abort samtools为了通过anaconda安装早期版本的openssl,我尝试了各种方法,但仍然显示我安装了openssl版本1.1.1。
感谢您对如何(a)通过anaconda安装早期版本的openssl或(b)直接使用samtools来评估早期版本的不同路径或(c)任何其他解决方案的任何指导。
发布于 2020-04-12 10:50:51
好吧,我对其他解决方案持开放态度,但如果其他人遇到这个问题,这就是对我有效的解决方案。
我从sourceforge (https://sourceforge.net/projects/samtools/)下载了这个包,并按照自述文件的说明对其进行了编译。我没有运行我路径中的anaconda包中的samtools,而是将这个新编译的文件移到了感兴趣的文件夹中。我从那里调用它如下所示:
cd users/me/desktop/example (where samtools executable lives in this folder)
./samtools etc etc我知道这对许多人来说是基本的,但对我来说不是,我希望它对将来有这个问题的其他人有帮助。
https://stackoverflow.com/questions/61164852
复制相似问题