バッファの実行時にPythonシェルに強制的にモジュールを再インポートさせる方法は?


9

私はCc Ccを使用してバッファをPythonシェルに送信しています。バッファは最初からインポートされています。インポートしているモジュールを変更した場合、Cc Ccを使用してバッファーを再度実行すると、変更が反映されないことがわかりました(劣ったPythonがインポートを1回しか実行していないようです)。

Pythonシェルにバッファの最初の実行ですでに呼び出されたモジュールを再度インポートさせるにはどうすればよいですか?

回答:



4

これが私のワークフローです。私はemacsをipythonを使うように設定しました

(setq
 python-shell-interpreter "ipython3"
 python-shell-interpreter-args "--simple-prompt --pprint")

それから〜/ .ipython / profile_default / startup / 00-ipython_init.pyに以下を入れます:

ip = get_ipython()
ip.magic('load_ext autoreload')

次に、変更してipythonでモジュールをリロードしたいときにこれを入力します。これはすべてのモジュールで機能し、インポートの依存関係を気にする必要がないため、これが好きです。

%autoreload

1

これを行うには、python-runを変更し、Pythonプロセスを強制的に再起動します。

;; Run python and pop-up its shell.
;; Kill process to solve the reload modules problem.
(defun my-python-shell-run ()
  (interactive)
  (when (get-buffer-process "*Python*")
     (set-process-query-on-exit-flag (get-buffer-process "*Python*") nil)
     (kill-process (get-buffer-process "*Python*"))
     ;; Uncomment If you want to clean the buffer too.
     ;;(kill-buffer "*Python*")
     ;; Not so fast!
     (sleep-for 0.5))
  (run-python (python-shell-parse-command) nil nil)
  (python-shell-send-buffer)
  ;; Pop new window only if shell isnt visible
  ;; in any frame.
  (unless (get-buffer-window "*Python*" t) 
    (python-shell-switch-to-shell)))

(defun my-python-shell-run-region ()
  (interactive)
  (python-shell-send-region (region-beginning) (region-end))
  (python-shell-switch-to-shell))

(eval-after-load "python"
  '(progn
     (define-key python-mode-map (kbd "C-c C-c") 'my-python-shell-run)
     (define-key python-mode-map (kbd "C-c C-r") 'my-python-shell-run-region)
     (define-key python-mode-map (kbd "C-h f") 'python-eldoc-at-point)))

http://lgmoneda.github.io/2017/02/19/emacs-python-shell-config-eng.html


素晴らしい解決策!あなたは私を数時間救った!ありがとうございました!
DmitrySemenov 2018年
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.