Home > Blockchain >  No module named 'fusioncharts'
No module named 'fusioncharts'

Time:06-23

I am trying to plot fusion chart in django after adding fusioncharts,I am getting an error.

from fusioncharts import FusionCharts
FusionCharts ModuleNotFoundError:

CodePudding user response:

Normally when you get such an error it is because you forgot to install the module, did a bit of research and came to the conclusion that you can install using pip: open the command prompt use the command pip install twFusionCharts.If this does not work, take a look at the fusioncharts site, you will find there the indications for the alternative installation for all operating systems.

  • Related