From 283e84241c62379b8d6ee92d9e55c5540e1e08be Mon Sep 17 00:00:00 2001 From: anon Date: Tue, 16 Jan 2024 18:43:10 +0100 Subject: [PATCH] fix python startup files --- bash/.bashrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bash/.bashrc b/bash/.bashrc index 280fda4..b793b0b 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -353,7 +353,8 @@ export PERL5LIB="$PERL5LIB:." #pragma endregion ### Python ### #pragma region -alias ipython="ipython -i ${MM}/Python/Pythonrc/init.py" +export PYTHONSTARTUP="${HOME}/.pythonrc" +alias ipython="ipython -i '${PYTHONSTARTUP}'" alias vsource='source ./venv/bin/activate' #pragma endregion ### Java ###