1

I am trying to run enaml-native create app for the first time, but I always get the error:

No module named 'atom'

however I already have the module installed:

output from: pip install atom

Does anybody know how to fix this?

OneCricketeer
  • 179,855
  • 19
  • 132
  • 245
Lokian
  • 93
  • 11
  • atom is installed in your /usr/ library, not in your anaconda environement. You can check the python path with ``print(sys.path)`` – iElden Nov 17 '18 at 23:08
  • You can try installing atom without pip: https://stackoverflow.com/questions/13270877/how-to-manually-install-a-pypi-module-without-pip-easy-install – Armster Nov 17 '18 at 23:17
  • It solved uninstalling and then install again some modules – Lokian Nov 17 '18 at 23:20
  • Notice the first image is using Anaconda for searching for packages. The second is not – OneCricketeer Nov 17 '18 at 23:45

1 Answers1

1

Maybe you should reinstall Atom:

pip uninstall atom
pip install atom

If that doesn't work, try pip3 instead of pip:

And if those two don't work, try:

python -m pip uninstall atom
python -m pip install atom

If that doesn't work either, make sure you uninstall atom and then you can try installing it without pip:

How to manually install a pypi module without pip/easy_install?

OneCricketeer
  • 179,855
  • 19
  • 132
  • 245
Armster
  • 772
  • 1
  • 9
  • 25
  • Well, I've just reinstalled as you said (again), and had issue with others modules, uninstall and reinstalled each of them and now It's solved. Thank you. – Lokian Nov 17 '18 at 23:14