Improve ipython loader

This commit is contained in:
David Tomaschik
2020-10-11 10:49:15 -07:00
parent f6b5cd90fc
commit 398e39b9eb

View File

@@ -1,3 +1,3 @@
if which ipython >/dev/null 2>/dev/null ; then
if command -v ipython >/dev/null || command -v ipython3 >/dev/null ; then
export PYTHONSTARTUP="${HOME}/.ipython.py"
fi