Reputation: 161
I am running Python on anaconda windows. I need to use flashtext library and seems it's not possible if you run python on windows. Is there any solution ?
Upvotes: 1
Views: 732
Reputation: 802
Using Windows 10 and Anaconda 2018.12 - Python 3.7, I ran the following in Anaconda prompt:
(base) C:\Users\john.doe>pip install flashtext
And it returned
Successfully installed flashtext-2.7
Testing revealed it works properly, however there are some caveats when mixing pip
and conda
.. please heed them.
Upvotes: 2
Reputation: 17
Anaconda support FlashText library.
conda install -c derickl flashtext
Upvotes: 0