summaryrefslogtreecommitdiff
path: root/.dir-locals.el
diff options
context:
space:
mode:
authorAlexandre Flament <alex@al-f.net>2020-12-20 09:29:53 +0100
committerGitHub <noreply@github.com>2020-12-20 09:29:53 +0100
commit32e4eab3369ed1f9534ccabaa36c760b03f0a5b6 (patch)
tree7e55f0269306c7e344b5b2673058604e0c931ae3 /.dir-locals.el
parent14c7cc0e118f1d0873b32b34793cdec2c5c9c13e (diff)
parentbe08e5bfab2d67f9b1b910eb25bc073d5bff8916 (diff)
Merge pull request #2401 from return42/drop-virtualenv-cmd
[mod] remove obsolete virtualenv command
Diffstat (limited to '.dir-locals.el')
-rw-r--r--.dir-locals.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/.dir-locals.el b/.dir-locals.el
index d7ec87921..970199b42 100644
--- a/.dir-locals.el
+++ b/.dir-locals.el
@@ -25,7 +25,7 @@
;; Alternatively create the virtualenv, source it and install jedi + epc
;; (required by `emacs-jedi <https://tkf.github.io/emacs-jedi>`_)::
;;
-;; $ virtualenv --python=python3 "--no-site-packages" ./local/py3
+;; $ python -m venv ./local/py3
;; ...
;; $ source ./local/py3/bin/activate
;; (py3)$ # now install into the activated 'py3' environment ..