purcell / emacs.d

An Emacs configuration bundle with batteries included
BSD 2-Clause "Simplified" License
6.85k stars 2.05k forks source link

about : init-python.el #823

Closed jhsygg closed 1 year ago

jhsygg commented 1 year ago

emacs 28.2

pring('this is a test')

C-c C-p

: Process Python exited abnormally with code 49

purcell commented 1 year ago

Assuming you mean that you put pring('this is a test') in a python-mode buffer and hit C-c C-p, this works fine for me —— it starts a *Python* interpreter buffer running Python 3.9.6 on my machine. If it doesn't work for you, probably you don't have a working Python installed in such a way that Emacs can find it.

jhsygg commented 1 year ago

Steve Purcell @.***>于2022年11月7日 周一23:47写道:

Assuming you mean that you put pring('this is a test') in a python-mode buffer and hit C-c C-p, this works fine for me —— it starts a Python interpreter buffer running Python 3.9.6 on my machine. If it doesn't work for you, probably you don't have a working Python installed in such a way that Emacs can find it.

— Reply to this email directly, view it on GitHub https://github.com/purcell/emacs.d/issues/823#issuecomment-1305808075, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABQIWO4KSPJ7W5AOBQFKXLTWHEQCXANCNFSM6AAAAAARY4RMUM . You are receiving this because you authored the thread.Message ID: @.***>

Thank you