Trouble Installing Textblob with Pip

Trouble installing TextBlob with pip

This is an error with the newest version of pip. If you have recently updated pip and are having this issue, here is what worked for me (based on https://github.com/pypa/pip/issues/7209):

python -m pip uninstall pip
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python get-pip.py --user
python -m pip install --user textblob

This uninstalls and reinstalls pip using --user.

Trouble installing TextBlob for Python

You are expected to be in the directory when installing. Try:

cd C:\Users\Sam\Desktop\TextBlob
python setup.py install

BTW try to get out of the habit of saving things to the desktop. You should only have short cuts on there especially on corporate machines as they often save the desktop on shutdown to the network and load it on startup - this slows things down a lot when there are files and directories on there.



Related Topics



Leave a reply



Submit