0
from unidecode import unidecode

Although I installed unidecode with

pip install unidecode

there is still an error like in the title. I am working on a PyCharm and i Installed it on a terminal being in folder: Scripts.

ad_progg
  • 11
  • 2
  • 5
    Are you sure PyCharm is using the exact same Python interpreter that was used to install the module? – MattDMo Aug 22 '22 at 15:17
  • Did this answer your question? [No module found](https://stackoverflow.com/a/73398463/19290081) – Jamiu S. Aug 22 '22 at 15:18
  • Try doing `pip install unidecode` in the terminal in PyCharm. I ran into a similar problem a couple months ago and this seemed to work for me. – Hhadley Aug 22 '22 at 15:20
  • @Hhadley I thought about it and still the same error. – ad_progg Aug 22 '22 at 15:24
  • Are you sure that your Pythons are coming from the same place? While I was having this issue, my terminal was accessing python from a different place on my computer than my pycharm was. I had to create a new enviornment and set the path to what my terminal was. – Hhadley Aug 22 '22 at 15:30

1 Answers1

3

In Pycharm try to go to "Python Packages" section placed in the bottom, search it and install.

In addition, a mirror of the package here

Or run in this way:

pip install Unidecode
Alex Parra
  • 61
  • 3