2013-12-08 127 views
1

我是新來的Python和tweepy。我試圖尋找答案,但一直未能得到這個工作。在windows上安裝tweepy時出錯

我有Java 6(不能更改爲7,爲另一個項目),python 2.7和我已經下載並提取tweepy在我的C驅動器。

Java和python都在PATH變量中。我正在嘗試安裝tweepy,並且不斷收到此錯誤。

C:\>cd C:\tweepy 

C:\tweepy>python 
Python 2.7.6 (default, Nov 10 2013, 19:24:24) [MSC v.1500 64 bit (AMD64)] on win32 
Type "help", "copyright", "credits" or "license" for more information. 
>>>setup.py build 
    File "<stdin>", line 1 
    setup.py build 
       ^
SyntaxError: invalid syntax 
>>> setup.py install 
    File "<stdin>", line 1 
    setup.py install 
       ^
SyntaxError: invalid syntax 
>>> 

我在哪裏出錯了?這是配置問題嗎?

+0

在命令提示符下寫''python setup.py install'' – mac389

+0

@ mac389你應該添加一個答案以便它可以被接受 –

回答

1
  1. 下載tweepy並解壓縮,在桌面:https://github.com/tweepy/tweepy

2.rename它tweepy

  • 開放命令提示和類型 「CD桌面」,那麼「CD tweepy」

  • 型 「蟒蛇的setup.py安裝」 enter image description here

  • 3

    另一種方法是使用點(如果你有它安裝)。 運行

    pip install tweepy 
    

    它應該工作得很好然後。