Why am I recieving "ModuleNotFoundError: No module named 'Quandl'" in the Microsoft Azure Machine Learning Studio?

Exchange Guru 1 Reputation point
2022-03-12T21:41:14.65+00:00

In the Microsoft Azure Machine Learning Studio I am trying to import quandl, but I keep running into this error: "ModuleNotFoundError: No module named 'Quandl'". For context, I am using an .ipynb file.

I have tried:
!pip install quandl
import quandl

as well as:
!pip3 install quandl
import quandl

I have also tried spelling quandl with an uppercase q to no avail.

The pip installation command works just fine, outputting that the requirement is already satisfied.

I have no trouble doing this in jupyter notebooks or google colab, so what is the issue?

Azure Machine Learning
Azure Machine Learning
An Azure machine learning service for building and deploying models.
3,338 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. romungi-MSFT 48,911 Reputation points Microsoft Employee Moderator
    2022-03-14T07:18:15.433+00:00

    @Exchange Guru I believe you are using the notebooks to run the install and import. Which kernel are you using? I have Python 3.6 - AzureML kernel and it seems to work fine.

    182712-image.png

    If an answer is helpful, please click on 130616-image.png or upvote 130671-image.png which might help other community members reading this thread.

    1 person found this answer helpful.

  2. Bruce A Li 5 Reputation points
    2023-03-23T00:16:46.5166667+00:00

    Do not use !pip, use %pip instead

    1 person found this answer helpful.

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.