I want to write some code in Python that will be used for manipulating data in Fiji. I followed the instructions to install the library "imagej" so that I can access Fiji via Anaconda-Python. This is how the two lines look like:
import imagej
ij = imagej.init('C:\Program Files\Fiji\Fiji.app')
However, when I run these two lines the following error shows:
JavaException: JVM exception occurred: net/imagej/updater/UpdateService
Apparently Python is trying to access Fiji Updater but it cannot (that's what I understand...) How can I run Fiji correctly without such an error? Is there any way to disable this?