About 50 results
Open links in new tab
  1. What is the difference between Python and IPython?

    Aug 19, 2024 · IPython is a powerful interactive Python interpreter that is more interactive compared to IDLE and the standard interpreter. To get the standard Python interpreter you type python and you …

  2. Change IPython/Jupyter notebook working directory

    Mar 28, 2013 · When I open a Jupyter notebook (formerly IPython) it defaults to C:\\Users\\USERNAME. How can I change this so to another location?

  3. How do I add python3 kernel to jupyter (IPython)

    Mar 3, 2015 · My Jupyter notebooks installed with python 2 kernel. I do not understand why. I might have messed something up when I did the install. I already have python 3 installed. How can I add it …

  4. Show DataFrame as table in iPython Notebook - Stack Overflow

    Show DataFrame as table in iPython Notebook Asked 11 years, 5 months ago Modified 7 months ago Viewed 512k times

  5. Using both Python 2.x and Python 3.x in IPython Notebook

    I use IPython notebooks and would like to be able to select to create a 2.x or 3.x python notebook in IPython. I initially had Anaconda. With Anaconda a global environment variable had to be chan...

  6. python - Step-by-step debugging with IPython - Stack Overflow

    Jun 1, 2013 · When your program/script hits an embed() statement, you are dropped into an IPython shell. This allows the full inspection of objects and testing of Python code using all the IPython …

  7. How can I access IPython's "display" function? - Stack Overflow

    Jan 18, 2023 · How can I access IPython's "display" function? Asked 8 years, 1 month ago Modified 1 year, 4 months ago Viewed 252k times

  8. python - Autoreload of modules in IPython - Stack Overflow

    Dec 15, 2009 · Is there a way to have IPython automatically reload all changed code? Either before each line is executed in the shell or failing that when it is specifically requested to. I'm doing a lot of …

  9. Showing line numbers in IPython/Jupyter Notebooks

    Oct 16, 2023 · Julien Marrec Over a year ago For Ipython 3 (Jupyter), in command mode (Esc), you just have to press "L" to toggle line numbers ChathuraG Over a year ago Is there a way to add line …

  10. io - IPython: redirecting output of a Python script to a file (like ...

    May 7, 2017 · There's the hacky way of overwriting sys.stdout and sys.stderr with a file object, but that's really not a good way to go about it. Really, if you want to control where the output goes from inside …