I\'m working on a macbook pro trying to use the gensim package to do Word2Vec. I had used the model earlier in the week, but when I tried to resume using it, I was given an
I had this issue with python 3.7 on windows 10 for both x86 and x64 version. Using dependency walker I found msvcp120.dll is missing. Placing the same in python root folder solved the issue for me.
Your issue is likely caused by a linking problem described in this github issue.
Since you are already using anaconda, probably the best strategy for you is to use compiled binaries instead of trying to compile with pip yourself.
The only two things you have to do is:
pip uninstall scipy
conda install scipy
I had the same problem and fixed it by uninstall and reinstall scipy
package.
If you are not a conda
user check it out:
pip uninstall scipy
# or
apt-get remove python-scipy
# Then:
pip install scipy
pip3 uninstall scipy
# or
apt-get remove python3-scipy
# Then:
pip3 install scipy