3

I am trying to install the geoviews module. I installed it successfully but when I am trying to import it in my code I have this message:

No module named 'channels

I don't know how to proceed.

Atori
  • 25
  • 3
  • this shouldn't happen and could be a bug in the geoviews conda spec. can you post the exact command you ran to install geoviews as well as the import command which throws this error? Also, can you post the result of `conda list`? – Michael Delgado May 13 '22 at 23:45

2 Answers2

0

Try install the channels module via the command:

pip install channels

or

python -m pip install -U channel
Red
  • 26,798
  • 7
  • 36
  • 58
0

This is what I write in my Anaconda PowerShell and it works !

conda install -c conda-forge geoviews
Atori
  • 25
  • 3