use*_*002 5 python openssl anaconda samtools
我在其他地方看到过一些类似的问题,但我似乎找不到适合我的解决方案。我正在尝试在 anaconda 上使用 python 运行 samtools。我正在运行 macOS 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
Run Code Online (Sandbox Code Playgroud)
我已经尝试了各种努力通过anaconda安装早期版本的openssl,但它仍然显示我安装了openssl版本1.1.1。
感谢您提供有关如何(a)通过 anaconda 安装早期版本的 openssl 或(b)直接 samtools 评估早期版本的不同路径或(c)任何其他解决方案的指导。
好的,所以我对其他解决方案持开放态度,但如果其他人遇到这个问题,这对我有用。
我从 sourceforge ( https://sourceforge.net/projects/samtools/ )下载了该包,并按照自述文件所述对其进行编译。我没有从路径中的 anaconda 包运行 samtools,而是将这个新编译的文件移动到感兴趣的文件夹中。我从那里称呼它如下:
cd users/me/desktop/example (where samtools executable lives in this folder)
./samtools etc etc
Run Code Online (Sandbox Code Playgroud)
我知道这对许多人来说是基本的,但对我来说不是,我希望这对将来遇到此问题的其他人有帮助