Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.4k views
in Technique[技术] by (71.8m points)

Python Can't Find Module After Installing with Pip and Conda

I am on Windows Subsystem for Linux (WSL). I've defined an environment and I am trying to add the palettable package to it. This is what I tried:

  1. conda install palettable, went fine no errors, tried to do import palettable in my script and I get the error ModuleNotFoundError: No module named 'palettable'
  2. Next I did conda remove palettable
  3. Then I installed again, this time using pip by doing pip install palettable
  4. I get the same error

Did I miss a step? Or do something wrong? I've added many other packages to this same environment using conda and not had any problems or encountered this error before.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can easily fix this problem by restarting the kernel or IDE in which you are writing the code after installing the module..


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...