背景:目前我需要用到这四个库,但是之前各种安装的时候一直会有各种各样的错误,有的库之间还会冲突。所以经过我近两天的测试,终于摸索出这种顺序的安装方法,可以成功安装上面这四个库。大家可以参考一下。
以下均在cmd命令行就可以完成
1、创建虚拟环境:conda create -n python3.6 python=3.6
(openslide目前只支持到3.6版本)
2、激活虚拟环境:conda activate python3.6
3、更新pip(如果需要的话):easy_install -U pip==19.1.1
4、安装opencv:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple opencv-python
5、安装matplotlib:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple matplotlib
6、安装openslide:在这里https://pypi.org/project/openslide-python/1.1.1/#files下载合适的whl文件,然后回到命令行运行:
pip install C:\Users\wcl\Downloads\openslide_python-1.1.1-cp36-cp36m-win_amd64.whl
7、安装plotly:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple plotly
8、安装pandas:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pandas
9、验证:
python
import cv2
import matplotlib.pyplot
import openslide
import plotly.figure_factory as ff
import plotly.express as px
大功告成!