#ipython
Today, I learnt that using Ipython is immensely better and less frustrating than simple Python interpreter to explore the code

Is there something above this....?
December 15, 2025 at 4:06 PM
📰 We Lost Something: 1970s REPLs Were Better Than Modern Development Environments

💬 Users praise simple dev environments like IPython and Lisp, but lament modern IDE bloating. Nostalgia for 70s simplicity reigns. 😅

https://news.ycombinator.com/item?id=46257410
December 13, 2025 at 9:00 PM
haskell-ipython-kernel 0.12.0.0-1 x86_64 A library for creating kernels for IPython frontends

Interest | Match | Feed
Origin
archlinux.org
December 10, 2025 at 7:25 AM
haskell-ipython-kernel 0.12.0.0-1 x86_64 A library for creating kernels for IPython frontends

Interest | Match | Feed
Origin
archlinux.org
December 10, 2025 at 7:25 AM
RE: https://fantastic.earth/@abnv/115568841298323057

My feed repeater has been bringing up great gems from the past, such as: https://nbviewer.org/url/norvig.com/ipython/xkcd1313.ipynb by Peter Norvig.
fantastic.earth
December 9, 2025 at 8:49 AM
iPython notebook source code and more thoughts in the blog post: exclav.es/2025/12/03/a...
December 4, 2025 at 1:51 AM
re: qalc:

wait i can just call the qalc CLI from ipython :O
December 4, 2025 at 1:01 AM
building a custom ipython repl environment is kinda fun - it's like crafting your own custom calculator

gonna use this (in tandem with `qalc`), and tack on functions as i experiment and have this in my toolbelt
December 4, 2025 at 12:42 AM
ipython is great if you want to move off notebooks.
Same interpreter, but in the shell.
December 2, 2025 at 12:20 PM
Like a decadish ago they were making millions from an ipython fork with all the references stripped out lol
November 27, 2025 at 11:09 PM
Useful : How do I convert a IPython Notebook into a Python file via commandline? On the command line, you can use nbconvert: 'jupyter nbconvert --to script [YOUR_NOTEBOOK].ipynb' or even inside a notebook with '!jupyter nbconvert --to script [YOUR_NOTEBOOK].ipynb'
November 23, 2025 at 8:05 AM
Useful : How do I convert a IPython Notebook into a Python file via commandline? On the command line, you can use nbconvert: 'jupyter nbconvert --to script [YOUR_NOTEBOOK].ipynb' or even inside a notebook with '!jupyter nbconvert --to script [YOUR_NOTEBOOK].ipynb'
November 21, 2025 at 8:05 AM
I often use python to debug and write unit tests for C code, and so I have a workflow where I'm constantly: making a change to the C code, rebuilding the C extension, running a python script or doing something in the ipython console, repeat. every year it feels like python's build tooling is […]
Original post on feed.hella.cheap
feed.hella.cheap
November 18, 2025 at 10:26 PM
ipython notebookをneovimで実行できるようになったらvscodeいらない
November 16, 2025 at 8:41 AM
I use Python for that. :) Sometimes not even creating a file, but using an IPython REPL that imports my own helpers on start.
(Btw I found out about top-level statements only today...)
And btw uv is *incredible*. Solves most Python problems (except for packages requiring C builds, sucks for them).
November 13, 2025 at 11:51 PM
Useful : How do I convert a IPython Notebook into a Python file via commandline? On the command line, you can use nbconvert: 'jupyter nbconvert --to script [YOUR_NOTEBOOK].ipynb' or even inside a notebook with '!jupyter nbconvert --to script [YOUR_NOTEBOOK].ipynb'
November 13, 2025 at 8:05 AM
Ask and ye shall receive
github.com/ipython/xkcd...
GitHub - ipython/xkcd-font: The xkcd font
The xkcd font. Contribute to ipython/xkcd-font development by creating an account on GitHub.
github.com
November 12, 2025 at 9:53 PM
Just released: Version 10.6.33 of passagemath, the pip-installable modularized #SageMath fork, an #OpenSource general-purpose #Mathematics system in #Python.
This version adds support for IPython 9.7.
github.com/passagemath/...
Release passagemath-10.6.33 · passagemath/passagemath
This release adds support for IPython 9.7. What's Changed dist.yml (wheels) [macos]: Our delocate no longer needs joblib by @mkoeppe in #1772 Add float function from upstream by @cxzhong in #1765 ...
github.com
November 7, 2025 at 6:23 PM
jupyter-metakernel 0.30.4-1 any A Jupyter/IPython kernel template

Interest | Match | Feed
Origin
archlinux.org
November 6, 2025 at 6:49 PM
SQL Essentials for Data Analysis: A 50-Day Hands-on Challenge Book (Go From Beginner to Pro)

>How to create and manage databases with SQLite

>How to use ipython-sql for seamless SQL queries in notebooks

>How to load data using Pandas or the CSV module

gumroad.com/a/83423507/h...
November 6, 2025 at 5:38 PM
ipython 9.7.0-1 any Enhanced Interactive Python shell

Interest | Match | Feed
Origin
archlinux.org
November 5, 2025 at 9:01 PM
Estoy haciendo ejercicios de programación en una web y me abro IPython al lado para ir probando cosas.

Las cosas que pruebo:
November 5, 2025 at 7:07 PM
...

You can get the list of paths to the different environments you've installed with conda, using "conda env list"... And then add /bin/ to the path to get to the executables, like ipython or jupyter
November 4, 2025 at 9:21 PM
...don't always trigger the right binaries.

Ie if I write 'ipython', I might not get the ipython I installed for the environment I've activated. So you need to use nameOfEnvionment/bin/ipython to get the ipython you installed, which allows you to use the libraries you installed for that environment
November 4, 2025 at 9:19 PM