我在ubuntu上使用Anaconda3版本4.2.0(在docker中)。
Anaconda安装在/root/anaconda3
文件夹中。
我使用pip install theano_bpr
安装了theano_bpr个包。
现在,当我打开python并尝试import theano_bpr
时,我收到以下消息:
>>> import theano_bpr
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/root/anaconda3/lib/python3.5/site-packages/theano_bpr/__init__.py", line 17, in <module>
from bpr import BPR
ImportError: No module named 'bpr'
但是,当我导航到/root/anaconda3/lib/python3.5/site-packages/theano_bpr/并在那里运行python时,我可以导入theano_bpr。
在/root/anaconda3/lib/python3.5/site-packages/theano_bpr/中有以下文件:
__init__.py, bpr.py (this one is causing problems), t.py, and utils.py
。