Ubuntu/用conda安装cv2/torchvision/tifffile/skimage/matplotlib/torchsummary/tqdm

#进入创建的pytorch环境

conda activate pytorch

#退出环境

conda deactivate 

#安装cv2(import cv2)

conda install -c https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/noarch opencv

#安装tifffile

conda install tifffile

#安装torchvision

conda install torchvision -c pytorch

#安装Matplotib库

conda install matplotlib

#安装skimage

conda install scikit-image

#安装torchsummary

pip install torchsummary

#安装tqdm

pip install tqdm

你可能感兴趣的:(python,anaconda,opencv,matplotlib,tiff)