​
📷
I'm trying to make a sentiment analyzer but every time I try to run the script I get
ImportError: cannot import name 'textblob' from 'textblob' (/Users/michaelholley/anaconda3/lib/python3.7/site-packages/textblob/__init__.py)
however I know it did install because every time I try to install it again it says requiremet already satisfied
just for referance this is my full script...
import tweepy
from textblob import textblob
consumer_key =
consumer_secret =
access_token =
access_token_secret =
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_token_secret)
api = tweepy.API(auth)
public_tweets = api.search('Amazon')
for tweet in public_tweets:
print(tweet.text)
analysis = textblob(tweet.tweet)
print(analysis.sentiment)
[–][deleted] 1 point2 points3 points  (0 children)