我使用的是64位的windows7和Python 2.7.11如何修復這個錯誤
我已經成功安裝了twilio但我有與第一行代碼的錯誤
from twilio.rest import Client
# Your Account SID from twilio.com/console
account_sid = "AC3902a3c28c6cf74a72a464c9062f6979"
# Your Auth Token from twilio.com/console
auth_token = "your_auth_token"
client = Client(account_sid, auth_token)
message = client.messages.create(
to="+15558675309",
from_="+15017250604",
body="Hello from Python!")
print(message.sid)
這裏是錯誤我得到:
Traceback (most recent call last):
File "D:\python\sendText.py", line 1, in <module>
from twilio.rest import Client
ImportError: cannot import name Client
您是使用IDE還是命令行?因爲相同的代碼在pyCharm中工作得很好。 – DineshKumar
請提一下'twilio version' – JkShaw
你的Python shebang在哪裏,可以考慮使用一個(甚至在Windows上);也檢查權限。 –