我将root导入PyCharm IDE(2017.3.1)时遇到问题。我默认使用anaconda分发python,ROOT连接到它:
Python 2.7.14 |Anaconda custom (64-bit)| (default, Dec 7 2017, 17:05:42) [GCC 7.2.0] on linux2
>>> import ROOT
>>> print(ROOT.__file__)
/home/balbok/root/lib/ROOT.pyc
但是,当我打开PyCharm时,我无法导入ROOT.pyc
(它看不到它。)当我尝试手动将路径/home/balbok/root/lib
添加到解释器时(转到Settings > Project Interpreter > Show All
并在那里添加路径),导入ROOT.py,因此t=ROOT.TFile()
无效。
有没有办法将.pyc
作为模块导入Pycharm,如果没有,那么有没有办法将ROOT作为模块导入(不只是.py
文件)?