Forum Discussion
Python Integration Error
I of course tried this then tried to create a python visualization or at least print("Hello") and I got the following error:
ImportError: DLL load failed: The specified module could not be found.
The default imports seem to be: os, uuid, matplotlib
Then later numpy as np
I'll submit another frown, but to say it didn't just work would be an understatement. I did test that I could use matplotlib, numpy, pandas etc. in Jupyter notebook even seaborn.
I ran your suggested installs and uninstalls in the order you suggested from the command line built into JupyterLab FWIW.
Cheers,
You may have already tried this but a pip uninstall and install of numpy and any other packages in the error could help.
- AMM6 years agoFrequent Visitor
Of course I tried reinstalling months ago, but I did it again. Seaborn still does not work maybe I should use pip on that but I persisted with some test code as I got a different error after reinstalling numpy. I didn't use any PowerBI integration but I was able to use this code:
from matplotlib import pyplot as plt import numpy as np def sinplot(flip = 1): x = np.linspace(0, 14, 100) for i in range(1, 5): plt.plot(x, np.sin(x + i * .5) * (7 - i) * flip) sinplot() plt.show()To get below so thanks, but