一、问题:
使用conda安装deeptools:
conda install deeptools
结果报错:ModuleNotFoundError: No module named 'conda'
随后conda命令已经不能使用
image.png
二、原因:
在安装过程中改变了python的版本,如本来python2.7则变为了python3.6,致使原来依赖python2.7环境的conda无法使用
三、解决方案:
(1)使用conda search 命令查看deeptools依赖python2.7的版本
conda search deeptools
image.png
conda install deeptools=3.1.3=py27h470a237_0
安装成功
(2)新建conda环境deeptools
conda create -n deeptools
conda activate deeptools
conda install deeptools
网友评论