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

No module named 'keras'

virtualdvid
Innovator
4,470 Views

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 Solution
idata
Employee
2,299 Views

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

 

View solution in original post

0 Kudos
3 Replies
idata
Employee
2,300 Views

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

 

0 Kudos
virtualdvid
Innovator
2,299 Views

Thank you! It worked perfectly!

0 Kudos
idata
Employee
2,299 Views

Hi ,

 

 

Thanks for the confirmation. We are closing this thread.

 

Feel free to open another thread for any further queries.

 

 

Regards,

 

Anju
0 Kudos
Reply