URI: 
       treadme: use 'python3 -m pip install' to install - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit ab441a507abc160803bbb60e1b5d165f0de6289f
   DIR parent 372921b423a11af8ffc3de06f6d2da9e321c3c43
  HTML Author: SomberNight <somber.night@protonmail.com>
       Date:   Fri, 12 Oct 2018 17:02:38 +0200
       
       readme: use 'python3 -m pip install' to install
       
       Diffstat:
         M README.rst                          |       4 ++--
         M electrum-env                        |       2 +-
       
       2 files changed, 3 insertions(+), 3 deletions(-)
       ---
   DIR diff --git a/README.rst b/README.rst
       t@@ -41,7 +41,7 @@ directory. To run Electrum from its root directory, just do::
        You can also install Electrum on your system, by running this command::
        
            sudo apt-get install python3-setuptools
       -    pip3 install .[fast]
       +    python3 -m pip install .[fast]
        
        This will download and install the Python dependencies used by
        Electrum, instead of using the 'packages' directory.
       t@@ -64,7 +64,7 @@ Check out the code from GitHub::
        
        Run install (this should install dependencies)::
        
       -    pip3 install .[fast]
       +    python3 -m pip install .[fast]
        
        Render the SVG icons to PNGs (optional)::
        
   DIR diff --git a/electrum-env b/electrum-env
       t@@ -17,7 +17,7 @@ if [ -e ./env/bin/activate ]; then
        else
            virtualenv env -p `which python3`
            source ./env/bin/activate
       -    python3 setup.py install
       +    python3 -m pip install .[fast]
        fi
        
        export PYTHONPATH="/usr/local/lib/python${PYTHON_VER}/site-packages:$PYTHONPATH"