summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlexandre Flament <alex@al-f.net>2021-05-27 17:04:32 +0200
committerGitHub <noreply@github.com>2021-05-27 17:04:32 +0200
commitb48b4c93d586f52418295a15a1c93934f007c41f (patch)
treea7cacc78696a058f0b3bd7ae680f5302b6b7ffe4 /docs
parent32b5a0ef7bc67e39e2287ca742d8dda6a3cadf3e (diff)
parente1f244b2d5698480f93169fce4bdc1782fc75bda (diff)
Merge pull request #100 from return42/webapp-pylint
[pylint] webapp.py
Diffstat (limited to 'docs')
-rw-r--r--docs/blog/python3.rst15
1 files changed, 6 insertions, 9 deletions
diff --git a/docs/blog/python3.rst b/docs/blog/python3.rst
index 7e770c193..62d7052fc 100644
--- a/docs/blog/python3.rst
+++ b/docs/blog/python3.rst
@@ -25,19 +25,16 @@ How to run searx using Python 3
Please make sure that you run at least Python 3.5.
To run searx, first a Python3 virtualenv should be created. After entering the
-virtualenv, dependencies must be installed. Then run searx with python3 instead
-of the usual python command.
+virtualenv, dependencies and searx must be installed. Then run searx from the
+command line.
.. code:: sh
- virtualenv -p python3 venv3
+ python3 -m venv venv3
source venv3/bin/activate
- pip3 install -r requirements.txt
- python3 searx/webapp.py
-
-
-If you want to run searx using Python2.7, you don't have to do anything
-differently as before.
+ pip install -U pip setuptools wheel pyyaml
+ pip install -e .
+ searx-run
Fun facts
=========