If I try to download the d3.js library to my jupyter laptop, it works fine with version 3.x. Then I can go to the chrome console and the d3 object is available.
from IPython.core.display import display, HTML HTML('<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>')
If I do the same with version 4.x , it is not available, even if it appears on the Chrome toolβs sources tab.
from IPython.core.display import display, HTML HTML('<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.10.0/d3.min.js"></script>')
What am I doing wrong?
source share