Plotly in Jupyter issue

前端 未结 9 2348
暗喜
暗喜 2021-02-13 03:47

I installed plotly.py to work some plots using Jupyter but I cannot import it.

! pip install plotly --upgrade
Requirement already up-to-date: plotly in c:\\pytho         


        
9条回答
  •  忘掉有多难
    2021-02-13 04:03

    Using plotly.plotly creates errors with different versions of python.

    1. ensure you don't have multiple version of python installed and in your environment variables path.

    2. Try from now to work with 'chart-studio'.

    Run

     'pip install chart-studio'
    

    and then import using:

     'import chart_studio.plotly as py'
    

提交回复
热议问题