so I pip installed textblob in my terminal but when I try to import it in my vscode it says module not found. I'm new to this and trying to mess around. Any help would be appreciated and apologize in advance if this is a redundant question. Thanks!
import pandas as pd
from textblob import TextBlob
import os
absolute_path = os.path.abspath(os.path.dirname('*.csv'))
df = pd.read_csv(absolute_path + '/data/*.csv')
exception has occurred: ModuleNotFoundError
No module named 'textblob'
I already tried pip install -U textblob but it says already satisfied. Basically have tried everything you can find on stackoverflow about textblob.
question from:
https://stackoverflow.com/questions/65649916/textblob-module-in-vs-code-help-mac-vscode-version-1-52-1 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…