python module not found error










0















This question has been asked a few times, but the remedy appears to complicated enough that I'm still searching for a user specific solution.



I recently installed Quandl module using pip command. Even after successful installation my python idle is still showing



error



Traceback (most recent call last):
File "F:Python36Machine Learning1.py", line 3, in <module>
import Quandl
ModuleNotFoundError: No module named 'Quandl'


  1. I have used import command in my code.

  2. I am using python 3.6.1 version.

  3. I am working on a windows 10 Desktop.

  4. I have also tried re-installation of module.

cmd image










share|improve this question
























  • What comes up if you type where python?

    – McGlothlin
    Jul 11 '17 at 16:39






  • 1





    Did you try: pip3 install quandl?

    – bernie
    Jul 11 '17 at 16:41











  • I think you are asking for where python command in cmd. So it gives F:Python36python.exe

    – Palash Jain
    Jul 11 '17 at 16:44












  • Yes that's what I was asking, thanks.

    – McGlothlin
    Jul 11 '17 at 16:45











  • I tried command pip3 install quandl just now but still no progress :(

    – Palash Jain
    Jul 11 '17 at 16:49
















0















This question has been asked a few times, but the remedy appears to complicated enough that I'm still searching for a user specific solution.



I recently installed Quandl module using pip command. Even after successful installation my python idle is still showing



error



Traceback (most recent call last):
File "F:Python36Machine Learning1.py", line 3, in <module>
import Quandl
ModuleNotFoundError: No module named 'Quandl'


  1. I have used import command in my code.

  2. I am using python 3.6.1 version.

  3. I am working on a windows 10 Desktop.

  4. I have also tried re-installation of module.

cmd image










share|improve this question
























  • What comes up if you type where python?

    – McGlothlin
    Jul 11 '17 at 16:39






  • 1





    Did you try: pip3 install quandl?

    – bernie
    Jul 11 '17 at 16:41











  • I think you are asking for where python command in cmd. So it gives F:Python36python.exe

    – Palash Jain
    Jul 11 '17 at 16:44












  • Yes that's what I was asking, thanks.

    – McGlothlin
    Jul 11 '17 at 16:45











  • I tried command pip3 install quandl just now but still no progress :(

    – Palash Jain
    Jul 11 '17 at 16:49














0












0








0








This question has been asked a few times, but the remedy appears to complicated enough that I'm still searching for a user specific solution.



I recently installed Quandl module using pip command. Even after successful installation my python idle is still showing



error



Traceback (most recent call last):
File "F:Python36Machine Learning1.py", line 3, in <module>
import Quandl
ModuleNotFoundError: No module named 'Quandl'


  1. I have used import command in my code.

  2. I am using python 3.6.1 version.

  3. I am working on a windows 10 Desktop.

  4. I have also tried re-installation of module.

cmd image










share|improve this question
















This question has been asked a few times, but the remedy appears to complicated enough that I'm still searching for a user specific solution.



I recently installed Quandl module using pip command. Even after successful installation my python idle is still showing



error



Traceback (most recent call last):
File "F:Python36Machine Learning1.py", line 3, in <module>
import Quandl
ModuleNotFoundError: No module named 'Quandl'


  1. I have used import command in my code.

  2. I am using python 3.6.1 version.

  3. I am working on a windows 10 Desktop.

  4. I have also tried re-installation of module.

cmd image







python-3.x pip quandl






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jul 11 '17 at 16:46









Mad Physicist

35.4k156899




35.4k156899










asked Jul 11 '17 at 16:38









Palash JainPalash Jain

3815




3815












  • What comes up if you type where python?

    – McGlothlin
    Jul 11 '17 at 16:39






  • 1





    Did you try: pip3 install quandl?

    – bernie
    Jul 11 '17 at 16:41











  • I think you are asking for where python command in cmd. So it gives F:Python36python.exe

    – Palash Jain
    Jul 11 '17 at 16:44












  • Yes that's what I was asking, thanks.

    – McGlothlin
    Jul 11 '17 at 16:45











  • I tried command pip3 install quandl just now but still no progress :(

    – Palash Jain
    Jul 11 '17 at 16:49


















  • What comes up if you type where python?

    – McGlothlin
    Jul 11 '17 at 16:39






  • 1





    Did you try: pip3 install quandl?

    – bernie
    Jul 11 '17 at 16:41











  • I think you are asking for where python command in cmd. So it gives F:Python36python.exe

    – Palash Jain
    Jul 11 '17 at 16:44












  • Yes that's what I was asking, thanks.

    – McGlothlin
    Jul 11 '17 at 16:45











  • I tried command pip3 install quandl just now but still no progress :(

    – Palash Jain
    Jul 11 '17 at 16:49

















What comes up if you type where python?

– McGlothlin
Jul 11 '17 at 16:39





What comes up if you type where python?

– McGlothlin
Jul 11 '17 at 16:39




1




1





Did you try: pip3 install quandl?

– bernie
Jul 11 '17 at 16:41





Did you try: pip3 install quandl?

– bernie
Jul 11 '17 at 16:41













I think you are asking for where python command in cmd. So it gives F:Python36python.exe

– Palash Jain
Jul 11 '17 at 16:44






I think you are asking for where python command in cmd. So it gives F:Python36python.exe

– Palash Jain
Jul 11 '17 at 16:44














Yes that's what I was asking, thanks.

– McGlothlin
Jul 11 '17 at 16:45





Yes that's what I was asking, thanks.

– McGlothlin
Jul 11 '17 at 16:45













I tried command pip3 install quandl just now but still no progress :(

– Palash Jain
Jul 11 '17 at 16:49






I tried command pip3 install quandl just now but still no progress :(

– Palash Jain
Jul 11 '17 at 16:49













1 Answer
1






active

oldest

votes


















0














You can better navigate to your python scripts folder and open a command window there and try pip3 install quandl .Hope this helps.






share|improve this answer























  • Correct me if I am wrong, you are asking me to navigate to python scripts folder on cmd window and try installing quandl again. I tried this just now but not working. image

    – Palash Jain
    Jul 11 '17 at 17:03












  • ya go ahead try that

    – Biswa_9937
    Jul 11 '17 at 17:03











  • will you consider checking in the case-sensitivity for e.g. try quandl instead of Quandl

    – Biswa_9937
    Jul 11 '17 at 17:10











  • Yes, tried and it worked thanks :)

    – Palash Jain
    Jul 11 '17 at 17:16











  • your welcome. can you accept my answer and upvote it.

    – Biswa_9937
    Jul 11 '17 at 17:17










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f45040175%2fpython-module-not-found-error%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














You can better navigate to your python scripts folder and open a command window there and try pip3 install quandl .Hope this helps.






share|improve this answer























  • Correct me if I am wrong, you are asking me to navigate to python scripts folder on cmd window and try installing quandl again. I tried this just now but not working. image

    – Palash Jain
    Jul 11 '17 at 17:03












  • ya go ahead try that

    – Biswa_9937
    Jul 11 '17 at 17:03











  • will you consider checking in the case-sensitivity for e.g. try quandl instead of Quandl

    – Biswa_9937
    Jul 11 '17 at 17:10











  • Yes, tried and it worked thanks :)

    – Palash Jain
    Jul 11 '17 at 17:16











  • your welcome. can you accept my answer and upvote it.

    – Biswa_9937
    Jul 11 '17 at 17:17















0














You can better navigate to your python scripts folder and open a command window there and try pip3 install quandl .Hope this helps.






share|improve this answer























  • Correct me if I am wrong, you are asking me to navigate to python scripts folder on cmd window and try installing quandl again. I tried this just now but not working. image

    – Palash Jain
    Jul 11 '17 at 17:03












  • ya go ahead try that

    – Biswa_9937
    Jul 11 '17 at 17:03











  • will you consider checking in the case-sensitivity for e.g. try quandl instead of Quandl

    – Biswa_9937
    Jul 11 '17 at 17:10











  • Yes, tried and it worked thanks :)

    – Palash Jain
    Jul 11 '17 at 17:16











  • your welcome. can you accept my answer and upvote it.

    – Biswa_9937
    Jul 11 '17 at 17:17













0












0








0







You can better navigate to your python scripts folder and open a command window there and try pip3 install quandl .Hope this helps.






share|improve this answer













You can better navigate to your python scripts folder and open a command window there and try pip3 install quandl .Hope this helps.







share|improve this answer












share|improve this answer



share|improve this answer










answered Jul 11 '17 at 16:43









Biswa_9937Biswa_9937

555616




555616












  • Correct me if I am wrong, you are asking me to navigate to python scripts folder on cmd window and try installing quandl again. I tried this just now but not working. image

    – Palash Jain
    Jul 11 '17 at 17:03












  • ya go ahead try that

    – Biswa_9937
    Jul 11 '17 at 17:03











  • will you consider checking in the case-sensitivity for e.g. try quandl instead of Quandl

    – Biswa_9937
    Jul 11 '17 at 17:10











  • Yes, tried and it worked thanks :)

    – Palash Jain
    Jul 11 '17 at 17:16











  • your welcome. can you accept my answer and upvote it.

    – Biswa_9937
    Jul 11 '17 at 17:17

















  • Correct me if I am wrong, you are asking me to navigate to python scripts folder on cmd window and try installing quandl again. I tried this just now but not working. image

    – Palash Jain
    Jul 11 '17 at 17:03












  • ya go ahead try that

    – Biswa_9937
    Jul 11 '17 at 17:03











  • will you consider checking in the case-sensitivity for e.g. try quandl instead of Quandl

    – Biswa_9937
    Jul 11 '17 at 17:10











  • Yes, tried and it worked thanks :)

    – Palash Jain
    Jul 11 '17 at 17:16











  • your welcome. can you accept my answer and upvote it.

    – Biswa_9937
    Jul 11 '17 at 17:17
















Correct me if I am wrong, you are asking me to navigate to python scripts folder on cmd window and try installing quandl again. I tried this just now but not working. image

– Palash Jain
Jul 11 '17 at 17:03






Correct me if I am wrong, you are asking me to navigate to python scripts folder on cmd window and try installing quandl again. I tried this just now but not working. image

– Palash Jain
Jul 11 '17 at 17:03














ya go ahead try that

– Biswa_9937
Jul 11 '17 at 17:03





ya go ahead try that

– Biswa_9937
Jul 11 '17 at 17:03













will you consider checking in the case-sensitivity for e.g. try quandl instead of Quandl

– Biswa_9937
Jul 11 '17 at 17:10





will you consider checking in the case-sensitivity for e.g. try quandl instead of Quandl

– Biswa_9937
Jul 11 '17 at 17:10













Yes, tried and it worked thanks :)

– Palash Jain
Jul 11 '17 at 17:16





Yes, tried and it worked thanks :)

– Palash Jain
Jul 11 '17 at 17:16













your welcome. can you accept my answer and upvote it.

– Biswa_9937
Jul 11 '17 at 17:17





your welcome. can you accept my answer and upvote it.

– Biswa_9937
Jul 11 '17 at 17:17

















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f45040175%2fpython-module-not-found-error%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

How to how show current date and time by default on contact form 7 in WordPress without taking input from user in datetimepicker

Syphilis

Darth Vader #20