From 8bb2789efececb3998654539118f92f4270c4f4f Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Fri, 15 Dec 2017 16:28:46 +0300 Subject: [PATCH] Docs: Remove -O2 from installation instructions [skip ci] --- docs/install.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/install.rst b/docs/install.rst index ddb6da8..e64f002 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -6,7 +6,7 @@ System-wide :: - sudo pip install --install-option='-O2' sqlconvert + sudo pip install sqlconvert User mode @@ -14,14 +14,14 @@ User mode :: - pip install --user --install-option='-O2' sqlconvert + pip install --user sqlconvert Virtual envs ------------ :: - pip install --install-option='-O2' sqlconvert + pip install sqlconvert Installation from sources ========================= @@ -31,14 +31,14 @@ command: :: - sudo python setup.py install -O2 + sudo python setup.py install If you don't want to install it system-wide you can install it in your home directory; run run the following command: :: - python setup.py install --user -O2 + python setup.py install --user Option '--user' installs sqlconvert into $HOME/.local/lib/python$MAJOR.$MINOR/site-packages/ where python finds it -- 2.39.2