import error; no module named Quandl

前端 未结 15 838
暖寄归人
暖寄归人 2020-12-16 11:37

I am am trying to run the Quandl module on a virtualenv which I have uninstalled packages only pandas and then Quandl,

I am running Python 2.7.10 - I have uninstall

15条回答
  •  别那么骄傲
    2020-12-16 12:25

    quandl has now changed, you require an api key, go the site and register your email.

    import quandl quandl.ApiConfig.api_key = 'your_api_key_here' df = quandl.get('WIKI/GOOGL')

提交回复
热议问题