blob: 7d75f7fb3c8f377b4a3d335158c50c7f685914c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
Put the respective lines into your Emacs initialisation file:
(add-to-list 'load-path "PATH/TO/PYTHON-MODE/")
(setq py-install-directory "PATH/TO/PYTHON-MODE/")
(require 'python-mode)
To change the Python default shell use
M-x customize-variable py-shell-name ipython
or in init-file
(setq py-shell-name "ipython")
resp.
(setq py-shell-name "PATH/TO/ipython")
|