답변:
ipython 버전 0.11 이상에서
--no-confirm-exit
OR로 실행디렉터리가 있는지 확인하고 (또는 실행 ipython profile create
하여 생성) $ HOME / .ipython / profile_default / ipython_config.py에 다음 줄을 추가합니다.
c = get_config()
c.TerminalInteractiveShell.confirm_exit = False
~/.config/ipython/profile_default/ipython_config.py
Linux에서는 freedesktop.org와 일치하도록 선호됩니다. 1.2.1에서 작동합니다.
usr/lib/python3.5/site-packages/IPython/utils/path.py:291: UserWarning: Ignoring ~/.config/ipython in favour of ~/.ipython.
코드에 인쇄 We have decided to go back to using .ipython everywhere
됩니다. 분명히 그들은 일부 1.x 버전에서 변경했습니다.
Exit
대문자로 입력하십시오 E
.
또는 다음을 사용하여 IPython을 시작하십시오.
$ ipython -noconfirm_exit
또는 최신 버전의 IPython의 경우 :
$ ipython --no-confirm-exit
ipythonrc
프로필 에서 설정할 수도 있습니다 .confirm_exit 0
exit
확인을 요청하지 않습니다. (Ctrl-D를 여전히, 경우에 당신이 실수로 충돌 메시지 않습니다)