2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

openslideをインストールする手順 [Windows10,Google colab]

Posted at

#概要#
本記事では、
以下のそれぞれの環境でopenslideをインストールした手順を紹介します。
・Windows10 (Anaconda-Jupyter notebook)
・Google Colaboratory

#実行環境#
[ローカル環境]
Windows 10 Pro(64bit)
Anaconda 4.10.3
JupyterNotebook 6.1.5
Python 3.7.9

#[Windows10]#
##ダウンロード手順##
1.以下のOpenSlide for Windowsのダウンロードページへ行く。
  https://openslide.org/download/#windows-binaries

2.最新(2017-11-22)の64-bit版をダウンロードする。

[openslide]Windows用.png

##インストール手順##
1.ファイルを展開し、作成されたファイルの中にある
  binフォルダ内のDLLファイル群全てを
  現在使用しているpython.exeが置いてあるフォルダに置く。

2.pythonにて"pip install openslide-python"を実行する。

3.インストール成功後に「Note: you may need to restart the kernel to use updated packages.」
  と表示されるため、カーネルをリスタートする。

##使用開始方法##
・pythonにて"import openslide"を実行。

#[Google Colaboratory環境]#
##インストール手順##
・Google Colaboratory上で以下のコマンドを実行する。

!apt update && apt install -y openslide-tools
!pip install openslide-python

[openslide]Windows用3.png
↑インストールが正しく行われたことを確認。

※openslide-toolsをインストールしないとimport時に以下のようなエラーが出ました。

[openslide]Windows用4.png

##使用開始方法##
・インストール後、pythonにて"import openslide"を実行。

#参考URL#
以下のQ&Aを参考にしました。

[Windows 10]
https://teratail.com/questions/213899

[Google Colaboratory]
https://stackoverflow.com/questions/54208457/is-it-possible-to-use-openslide-on-google-colab

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?