Import ASE Module on python

1.2k views Asked by At

After installing 'ase' (Atomic Simulation Module) module using pip in Python 3.7.3, Failed to import the module using python shell, although it is found in the pip list.

>>> import ase 
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
 import ase
ModuleNotFoundError: No module named 'ase'
0

There are 0 answers