diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2020-12-18 22:31:13 +0100 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2020-12-18 22:31:13 +0100 |
commit | 1a4524e03c2091b896f7efadb0b3a646888bd2ba (patch) | |
tree | ff731d903599940cc6d6a2445b12a4f34cc096e7 /.dir-locals.el | |
parent | 14c7cc0e118f1d0873b32b34793cdec2c5c9c13e (diff) | |
download | searxng-1a4524e03c2091b896f7efadb0b3a646888bd2ba.tar.gz searxng-1a4524e03c2091b896f7efadb0b3a646888bd2ba.zip |
[mod] remove obsolete virtualenv command
Installation and use of the command 'virtualenv' was only needed in py2 and py2
is no longer suported by searx. In py3 the command is replaced by 'python -m
venv'.
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to '.dir-locals.el')
-rw-r--r-- | .dir-locals.el | 2 |
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 .. |