comparison website/www/index.txt @ 7610:cc4f2a1d271c

docs: replace ' with " in windows tarfile examples The examples for using python to unpack a tarfile on windows used ' not ". I thought they were interchangable, but they are not. Only " works like I expect.
author John Rouillard <rouilj@ieee.org>
date Thu, 17 Aug 2023 13:54:01 -0400
parents 7301b776a94a
children e3f5edcfbbac
comparison
equal deleted inserted replaced
7609:044dea25c1e2 7610:cc4f2a1d271c
182 182
183 1. ``python3 -m pip download roundup`` 183 1. ``python3 -m pip download roundup``
184 2. ``tar -xzvf roundup-2.3.0.tar.gz`` 184 2. ``tar -xzvf roundup-2.3.0.tar.gz``
185 185
186 * if you don't have a tar command (e.g windows), use: 186 * if you don't have a tar command (e.g windows), use:
187 ``python -c 'import tarfile, sys; tarfile.open(sys.argv[1]).extractall();' roundup-2.3.0.tar.gz`` 187 ``python -c "import tarfile, sys; tarfile.open(sys.argv[1]).extractall();" roundup-2.3.0.tar.gz``
188 188
189 189
190 3. ``cd roundup-2.3.0`` 190 3. ``cd roundup-2.3.0``
191 4. ``python3 demo.py`` 191 4. ``python3 demo.py``
192 192

Roundup Issue Tracker: http://roundup-tracker.org/