web-dev-qa-db-ja.com

Python-tweepyのインポートImportError:tweepyという名前のモジュールがありません

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という名前のモジュールがありません

4
Yunus Hatipoglu

pyCharmで、[設定]-> [プロジェクトインタープリター]-> +-> [tweepy]-> [パッケージのインストール]。

上記を行うことにより、TweepyはPyCharmターミナルで動作しました。

一方、python3 -m pip install tweepyと入力してtweepyをインストールしました

6
Yunus Hatipoglu

次のコマンドでインストールしてみてください。

python3 -m pip install tweepy
3
Hayat

Ubuntuを使用している場合は、次を試してください:Sudo apt install python-pip

次に実行します:python3 -m pip install tweepy

お役に立てば幸いです。

0
harsh pamnani