Intel® Distribution for Python*
Engage in discussions with community peers related to Python* applications and core computational packages.

No module named 'keras'

virtualdvid
Innovador
7.614 Vistas

I'm trying to run qsub myjob but I'am getting an error. Here what I've done so far:

1. conda create -n myenv intel python=3

2. source activate myenv

3. installed libraries

pip install --ignore-installed --upgrade keras

pip install --ignore-installed --upgrade tensorflow

4. created myjob file with this lines inside:

# PBS -l nodes=1

cd $PBS_O_WORKDIR

echo Starting calculation

python NASNet.py

echo End of calculation

5. Executed qsub myjob

6. I'm getting this error:

from keras.preprocessing.image import ImageDataGenerator

ModuleNotFoundError: No module named 'keras'

I did a test using python NASNet.py in the terminal and it worked perfectly. Why is it not recognizing keras when I'am using qsub?

0 kudos
1 Solución
idata
Empleados
5.442 Vistas

Hi,

 

 

Thank you for the question.

 

Kindly include the command to activate you environment (source activate myenv) as part of the script. i.e please modify the myjobfile as below :

 

 

# PBS -l nodes=1 cd $PBS_O_WORKDIR echo Starting calculation source activate myenv python NASNet.py echo End of calculation  Please let us know if the answer provided helped.  Regards, Anju

 

Ver la solución en mensaje original publicado

3 Respuestas
idata
Empleados
5.443 Vistas

Hi,

 

 

Thank you for the question.

 

Kindly include the command to activate you environment (source activate myenv) as part of the script. i.e please modify the myjobfile as below :

 

 

# PBS -l nodes=1 cd $PBS_O_WORKDIR echo Starting calculation source activate myenv python NASNet.py echo End of calculation  Please let us know if the answer provided helped.  Regards, Anju

 

virtualdvid
Innovador
5.442 Vistas

Thank you! It worked perfectly!

idata
Empleados
5.442 Vistas

Hi ,

 

 

Thanks for the confirmation. We are closing this thread.

 

Feel free to open another thread for any further queries.

 

 

Regards,

 

Anju
Responder