Ubuntu 安装 openslide-python 步骤及报错处理

OSError: libopenslide.so.0: cannot open shared object file: No such file or directory

通过pip安装后,在python导入openslide出现该错误。

首先尝试,下面文章的做法,在大部分服务器上可以解决。

Ubuntu 安装 openslide-python 步骤及报错处理_寒风呼呼刮的博客-CSDN博客_ubuntu 安装openslide今天处理svs数据,导入openslide的时候老是报错,如下OSError: libopenslide.so.0: cannot open shared object file: No such file or directory发现自己少了第一步,因此要补安装OpenSlide,但是网上给很多人的方法是通过bash直接安装,我试了之后发现无法定位包,(后来在其他电脑安装的...https://blog.csdn.net/chongchong247619000/article/details/103930005但是,还有服务器不能通过命令和源码进行安装

经过尝试将原命令:

sudo apt-get install openslide-tools

更改成:

sudo apt update && sudo apt install -y openslide-tools

参考:OSError: libopenslide.so.0: cannot open shared object file: No such file or directory · Issue #59 · openslide/openslide-python · GitHubContext I am trying to install openslide for a project I'm working on Issue type (bug report or feature request): After running: sudo apt-get install openslide-tools sudo apt-get install python-openslide sudo pip3 --proxy http://bcp3.cum...https://github.com/openslide/openslide-python/issues/59可以解决问题

你可能感兴趣的:(ubuntu,linux,运维,服务器)