我安装了pyimagej:
pip3 install pyimagej
安装后,我创建了一个 conda imagej 环境。
conda create -n imagej -c conda-forge openjdk=8 pyimagej
在我的 pycharm IDE 中,我在 imagej 环境中设置了正确的 python 解释器。
我的脚本开始于:
import imagej
ij = imagej.init()
from ij import IJ
它给了我错误
ModuleNotFoundError:没有名为“ij”的模块
我不明白,因为 python 解释器中肯定有包 pyimage 。
感谢帮助!
同样的问题已经在这里发布: https ://forum.image.sc/t/cannot-find-imagej-module-after-installing-pyimagej-with-conda/23190/5 但没有解决方案。