update README.rst

- use 'python3 -m pip' instead of pure 'pip'
- advice Windows users to use 'py -3'
- use '.tar.gz' for archive links since they are quite a bit smaller
- reword and simplify some stuff
pull/511/head
Mike Fährmann 5 years ago
parent 4f39d2ae64
commit 4867ece13b
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

@ -36,23 +36,24 @@ easily installed or upgraded using pip_:
.. code:: bash .. code:: bash
$ pip install --upgrade gallery-dl $ python3 -m pip install --upgrade gallery-dl
Installing the latest dev-version directly from GitHub can be done with Installing the latest dev-version directly from GitHub can be done with
pip_ as well: pip_ as well:
.. code:: bash .. code:: bash
$ pip install --upgrade https://github.com/mikf/gallery-dl/archive/master.zip $ python3 -m pip install --upgrade https://github.com/mikf/gallery-dl/archive/master.tar.gz
Be sure the Python interpreter used for pip_ is version 3.4 or higher. Note: Windows users should use :code:`py -3` instead of :code:`python3`.
You might have to use :code:`pip3` or :code:`python3 -m pip`
depending on your system's defaults.
Please note that for optimal operation using the latest version of pip_ is advised, It is advised to use the latest version of pip_,
including the essential packages :code:`setuptools` and :code:`wheel`. including the essential packages :code:`setuptools` and :code:`wheel`.
To ensure that these packages are up-to-date (this applies to all platforms), please run To ensure that these packages are up-to-date, run
:code:`python -m pip install --upgrade pip setuptools wheel`
.. code:: bash
$ python3 -m pip install --upgrade pip setuptools wheel
From Source From Source
@ -67,13 +68,13 @@ Navigate into the respective directory and run the :code:`setup.py` file.
.. code:: bash .. code:: bash
$ wget https://github.com/mikf/gallery-dl/archive/master.zip $ wget https://github.com/mikf/gallery-dl/archive/master.tar.gz
$ unzip master.zip $ tar -xf master.tar.gz
# or # or
$ git clone https://github.com/mikf/gallery-dl.git $ git clone https://github.com/mikf/gallery-dl.git
$ cd gallery-dl $ cd gallery-dl*
$ python setup.py install $ python3 setup.py install
Standalone Executable Standalone Executable

Loading…
Cancel
Save