Trouble Installing Textblob For Python
I am new to programming, and I'm trying to install the TextBlob library for Python to help me do some stuff. Sadly, I'm having trouble installing TextBlob, let alone use it. I am u
Solution 1:
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.
Post a Comment for "Trouble Installing Textblob For Python"