민서네집

Jupyter Notebook - 디버깅, PixieDebugger 본문

Python

Jupyter Notebook - 디버깅, PixieDebugger

브라이언7 2019. 8. 10. 17:47

What is the right way to debug in iPython notebook?

 

What is the right way to debug in iPython notebook?

As I know, %debug magic can do debug within one cell. However, I have function calls across multiple cells. For example, In[1]: def fun1(a) def fun2(b) # I want to set a

stackoverflow.com

PixieDebugger – A Visual Python Debugger for Jupyter Notebooks Every Data Scientist Should Use

https://www.analyticsvidhya.com/blog/2018/07/pixie-debugger-python-debugging-tool-jupyter-notebooks-data-scientist-must-use/

 

PixieDebugger - A Visual Python Debugger for Jupyter Notebooks Every Data Scientist Should Use

PixieDebugger has been developed by the PixieDust team and claims to be the first visual debugger for Python, that works exclusively with Jupyter Notebooks.

www.analyticsvidhya.com

Python debug in Jupyter notebook

http://qingkaikong.blogspot.com/2018/05/python-debug-in-jupyter-notebook.html

 

Python debug in Jupyter notebook

This week, we will talk about how to debug in the jupyter notebook. From this week, I will also try to use Python3 as much as possible in m...

qingkaikong.blogspot.com

How to debug a Jupyter/iPython notebook

https://kawahara.ca/how-to-debug-a-jupyter-ipython-notebook/

 

How to debug a Jupyter/iPython notebook - kawahara.ca

Here’s how to debug your code when using a Jupyter/iPython notebook. Use Tracer()(). Here’s an example using a simple function (based on this lucid explanation). def test_debug(y): x = 10 # One-liner to start the debugger here. from IPython.core.debugger i

kawahara.ca

 

'Python' 카테고리의 다른 글

plotly - Python Graphing Libraries  (0) 2019.08.11
Jupyter Notebook - Variable Viewer  (0) 2019.08.10
matplotlib 한글폰트 사용하기  (2) 2019.03.31
jupyter notebook 커스터마이징  (1) 2019.03.31
Jupyter notebook 테마(theme) 적용하기  (0) 2019.01.21
Comments