Skip to main content
added 16 characters in body
Source Link
T. Verron
  • 4.3k
  • 2
  • 28
  • 58

I believe I found the solution.

  1. Install virtualenvwrapper

    Install virtualenvwrapper

  2. Run the setup:

    Run the setup:

    (require 'virtualenvwrapper) (venv-initialize-interactive-shells) ;; if you want interactive shell support (venv-initialize-eshell) ;; if you want eshell support (setq venv-location "/path/to/your/virtualenvs/")

  3. Finally, workon the desired virtual environment. Then you can run code block and use the desired interpreter.

(require 'virtualenvwrapper) (venv-initialize-interactive-shells) ;; if you want interactive shell support (venv-initialize-eshell) ;; if you want eshell support (setq venv-location "/path/to/your/virtualenvs/") 
  1. Finally, workon the desired virtual environment. Then you can run code block and use the desired interpreter.

I believe I found the solution.

  1. Install virtualenvwrapper
  2. Run the setup:
(require 'virtualenvwrapper) (venv-initialize-interactive-shells) ;; if you want interactive shell support (venv-initialize-eshell) ;; if you want eshell support (setq venv-location "/path/to/your/virtualenvs/") 
  1. Finally, workon the desired virtual environment. Then you can run code block and use the desired interpreter.

I believe I found the solution.

  1. Install virtualenvwrapper

  2. Run the setup:

    (require 'virtualenvwrapper) (venv-initialize-interactive-shells) ;; if you want interactive shell support (venv-initialize-eshell) ;; if you want eshell support (setq venv-location "/path/to/your/virtualenvs/")

  3. Finally, workon the desired virtual environment. Then you can run code block and use the desired interpreter.

Source Link

I believe I found the solution.

  1. Install virtualenvwrapper
  2. Run the setup:
(require 'virtualenvwrapper) (venv-initialize-interactive-shells) ;; if you want interactive shell support (venv-initialize-eshell) ;; if you want eshell support (setq venv-location "/path/to/your/virtualenvs/") 
  1. Finally, workon the desired virtual environment. Then you can run code block and use the desired interpreter.