我安装了pip install tweepy并且安装没有错误。
Requirement already satisfied: tweepy in /Library/Python/2.7/site-packages
Requirement already satisfied: requests>=2.11.1 in /Library/Python/2.7/site-packages (from tweepy)
Requirement already satisfied: PySocks>=1.5.7 in /Library/Python/2.7/site-packages (from tweepy)
Requirement already satisfied: six>=1.10.0 in /Library/Python/2.7/site-packages (from tweepy)
Requirement already satisfied: requests-oauthlib>=0.7.0 in /Library/Python/2.7/site-packages (from tweepy)
Requirement already satisfied: certifi>=2017.4.17 in /Library/Python/2.7/site-packages (from requests>=2.11.1->tweepy)
Requirement already satisfied: chardet<3.1.0,>=3.0.2 in /Library/Python/2.7/site-packages (from requests>=2.11.1->tweepy)
Requirement already satisfied: idna<2.7,>=2.5 in /Library/Python/2.7/site-packages (from requests>=2.11.1->tweepy)
Requirement already satisfied: urllib3<1.23,>=1.21.1 in /Library/Python/2.7/site-packages (from requests>=2.11.1->tweepy)
Requirement already satisfied: oauthlib>=0.6.2 in /Library/Python/2.7/site-packages (from requests-oauthlib>=0.7.0->tweepy)
这是我的代码:
import tweepy
from tweepy import OAuthHandler
consumer_key = 'consumer_key'
consumer_secret = 'consumer_secret'
access_token = 'access_token'
access_token_secret = 'access_token_secret'
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_token_secret)
api = tweepy.API(auth)
public_tweepy.API('Yunus Hatipoglu')
for tweet in public_tweets:
print(tweet.text)
analysis = TextBlob(tweet.text)
print(analysis.sentiment)
作为应用程序,我使用Pycharm,我的操作系统是OSX。
python3 --version:Python 3.6.4
当我运行我的代码时,我收到以下错误:
导入tweepy
ImportError:没有名为tweepy的模块
答案 0 :(得分:4)
PyCharm中的,设置 - &gt;项目口译员 - &gt; + - &gt; tweepy - &gt;安装 封装
通过上述操作,Tweepy已在PyCharm终端工作。
另一方面,我通过输入python3 -m pip install tweepy
答案 1 :(得分:3)
我直接将其安装在Python文件夹中,但对我不起作用。
之后,我在同一提示符下使用pip uninstall tweepy
进行了卸载。
因此,我使用了Anaconda提示符,并在代码pip install tweepy
之后使用了它。
我希望这是有用的。
答案 2 :(得分:1)
尝试通过此命令安装:
python3 -m pip install tweepy
答案 3 :(得分:0)
如果您正在使用ubuntu,请尝试:
sudo apt install python-pip
,然后运行:
python3 -m pip install tweepy
希望对您有帮助!
答案 4 :(得分:0)
这通常发生在您可能在pycharm中使用不同的python环境的地方。多次安装pip时,您的计算机可能具有不同的python解释器。 尝试使用以下步骤配置确切的python解释器。 PyCharm,设置->项目解释器-> 这将在右上方显示已安装的软件包列表和专用的解释器。在下拉菜单中尝试使用正确的口译员。
答案 5 :(得分:0)
对于Ubuntu 20.04
pip3 install --user tweepy