akshaynagpal / w2n

Convert number words (eg. twenty one) to numeric digits (21)
http://w2n.readthedocs.io
MIT License
169 stars 78 forks source link

ModuleNotFoundError: No module named 'word2number' Error. #46

Open AJ864 opened 4 years ago

AJ864 commented 4 years ago

Hi I have installed 'word2number' using command pip install word2number. I also received 'Successfully installed word2number-1.1' message. But when i am trying to import in jupiter notebook i am getting the ModuleNotFoundError: No module named 'word2number' Error.

Can you please help me with this. I assumed i did some mistake and tried to install word2number again and i received below message.

Requirement already satisfied: word2number in e:\python\lib\site-packages (1.1)

panzer commented 4 years ago

This article might help you https://medium.com/@thabangline/how-to-use-conda-and-pip-to-install-packages-within-jupyter-notebook-d0f2ed23b059

imsanjoykb commented 4 years ago

!pip install word2number

bastie commented 4 years ago

from word2number import w2n

w2n.word_to_num(your_number_string)

The package is named word2number but the module w2n.

kanakmi commented 4 years ago

Use this command in Anaconda Prompt conda install -c conda-forge word2number

jyotipatidar1 commented 3 years ago

conda install -c conda-forgue word2number use above command in Anaconda Prompt after that proceed([y]/n)? give it y

SumitMadanGh commented 3 years ago

conda install -c conda-forgue word2number use above command in Anaconda Prompt after that proceed([y]/n)? give it y

Thank you. It was of great help.

NKR212424 commented 3 years ago

conda install -c conda-forgue word2number use above command in Anaconda Prompt after that proceed([y]/n)? give it y This worked for me too. Thanks

kripa1804 commented 2 years ago

is it conda install -c conda-forgue word2number or -c conda-forge word2number?

please clarify anyone..

kanakmi commented 2 years ago

is it conda install -c conda-forgue word2number or -c conda-forge word2number?

please clarify anyone..

It is conda install -c conda-forgue word2number

sushmita201 commented 1 year ago

yes