diff options
| author | Alexandre Flament <alex@al-f.net> | 2021-05-27 17:04:32 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-27 17:04:32 +0200 |
| commit | b48b4c93d586f52418295a15a1c93934f007c41f (patch) | |
| tree | a7cacc78696a058f0b3bd7ae680f5302b6b7ffe4 /docs/blog/python3.rst | |
| parent | 32b5a0ef7bc67e39e2287ca742d8dda6a3cadf3e (diff) | |
| parent | e1f244b2d5698480f93169fce4bdc1782fc75bda (diff) | |
Merge pull request #100 from return42/webapp-pylint
[pylint] webapp.py
Diffstat (limited to 'docs/blog/python3.rst')
| -rw-r--r-- | docs/blog/python3.rst | 15 |
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 ========= |