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
After a while searching about this problem, I discovered it is a broken conda-kernel trough jupyter notebook.
Inside your notebook check if it is pointing to the write python executable's envinronment path by:
import sys
sys.executable
# >>>> 'C:\\Users\\username\\AppData\\Local\\Continuum\\anaconda3\\envs\\**wrong_env**\\python.exe'
If it isn't, the simple solution is to install nb_conda
:
conda install nb_conda