ImportError:Pycharm中没有名为“ keras”的模块

时间:2018-08-13 17:15:50

标签: python keras

伙计们,我目前在尝试导入时遇到问题,并且在代码中遇到了两个这样的问题:

Skip loading non-existent .env file /notebooks/app/.env
File "/notebooks/app/aime/predict/multimodal_aime_zeke_single_qs.py", line 35, in <module>
from app.aime.keras.callback.lightweight_progress_bar import LightweightProgressBar
File "/notebooks/app/aime/keras/callback/lightweight_progress_bar.py", line 5, in <module>
from keras.callbacks import Callback
ImportError: No module named 'keras'

然后我使用以下命令:

pip list | grep -i keras

要意识到我的命令中确实列出了keras:

Keras (2.2.2)
Keras-Applications (1.0.4)
Keras-Preprocessing (1.0.2)

有人可以帮忙吗?谢谢!

2 个答案:

答案 0 :(得分:0)

尝试使用pip3而不是pip安装keras;如果您使用的是python3,这应该可以工作。

T(L) = O(log([floor(log3(L))]!))
     = O([floor(log3(L))][log(floor(log3(L)))])  // apply Stirling
     = O([log3(L)][log(log3(L))])  // a number rounded down only differs
                                      from its value by less than 1
     = O(log L * log log L)        // base of log only contributes to a constant

还要检查安装了哪个目录keras,并确保Pycharm正在访问该目录。

答案 1 :(得分:0)

File->Settings->Project->Project Interpreter屏幕中,可以通过单击 + 符号(如果可用包中存在)来添加keras。