1

我能够安装 Jython(通过自制软件),配置 PyCharm 以将其用作我的解释器,但我无法让 PyC​​harm 导入 ij。

/usr/local/bin/jython -Dpython.path=/tmp/python /tmp/python/test.py
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by org.python.core.PySystemState (file:/usr/local/Cellar/jython/2.7.1/libexec/jython.jar) to method java.io.Console.encoding()
WARNING: Please consider reporting this to the maintainers of org.python.core.PySystemState
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release
Traceback (most recent call last):
  File "/tmp/python/test.py", line 1, in <module>
    import ij
ImportError: No module named ij

我的目标是能够使用 IDE 和比脚本编辑器中现有的更高级的调试工具编写 ImageJ 宏。Python 将是我首选的脚本语言,而 PyCharm 是我首选的 IDE。任何想法将不胜感激。

4

1 回答 1

0

您需要将 IDE 配置为使用 Jython 解释器,并ij.jarPYTHONPATH您的项目中使用。

对于 Eclipse IDE,Emanuele Martini的这篇ImageJ 论坛帖子中有详细的解释。

PyCharm 的设置应该类似。

于 2018-03-09T13:54:07.493 回答