Tried installing pixiedust for debugging functionality in Jupyter. Using standard conda environment , python 3.5 and following https://ibm-watson-data-lab.github.io/pixiedust/install.html Up to "pip install pixiedust", everything is fine, but "jupyter pixiedust install" reveals several modules which are not installed.. I suspect this may be wrong, and that they should have been installed by the pixiedust? After adding 5-6 modules (conda / pip) I gave up.. What is wrong? Having a good debugger would be nice for jupyter.
Asked
Active
Viewed 1,450 times
0
-
Please include the actual error messages you are getting. – Ralf Stubner Jul 06 '18 at 09:08
1 Answers
0
I had the same problem here. I use python 3 and ubuntu, but when I type 'pip install pixiedust', it was installing in python 2 (ubuntu's default).
What worked for me:
pip3 install pixiedust
pip3 install pixiedust_node
With that I can use the %%pixie_debugger in my cells and it works just fine.

Hanich
- 1
- 3