Variable: python-shell-remote-exec-path

python-shell-remote-exec-path is a customizable variable defined in python.el.gz.

Value

nil

Documentation

List of paths to be ensured remotely for searching executables.

When this variable is non-nil, values are exported into remote hosts PATH before starting processes. Values defined in python-shell-exec-path will take precedence to paths defined here. Normally you won't use this variable directly unless you plan to ensure a particular set of paths to all Python shell executed through tramp connections.

This variable was added, or its default value changed, in Emacs 25.1.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/python.el.gz
(defcustom python-shell-remote-exec-path nil
  "List of paths to be ensured remotely for searching executables.
When this variable is non-nil, values are exported into remote
hosts PATH before starting processes.  Values defined in
`python-shell-exec-path' will take precedence to paths defined
here.  Normally you won't use this variable directly unless you
plan to ensure a particular set of paths to all Python shell
executed through tramp connections."
  :version "25.1"
  :type '(repeat string)
  :group 'python)