# HG changeset patch # User John Rouillard # Date 1675099382 18000 # Node ID efb2aa271256759e6ab9c87fcbf352dbb9521453 # Parent 890b55c374a3fa5c77ca6edc687b5da17e5e0139 Prefer use of real (gnu) tar apparently extractall() doesn't strip leading / etc from tarball. Even though the tarball should be in good form, use the safer alternative first. diff -r 890b55c374a3 -r efb2aa271256 website/www/index.txt --- a/website/www/index.txt Mon Jan 23 22:08:33 2023 -0500 +++ b/website/www/index.txt Mon Jan 30 12:23:02 2023 -0500 @@ -142,7 +142,10 @@ file). 1. ``python -m pip download roundup`` - 2. ``python -c 'import tarfile, sys; tarfile.open(sys.argv[1]).extractall();' roundup-2.2.0.tar.gz`` + 2. ``tar -xzvf roundup-2.2.0.tar.gz`` + + * if you don't have a tar command, ``python -c 'import tarfile, sys; tarfile.open(sys.argv[1]).extractall();' roundup-2.2.0.tar.gz`` can be used. + 3. ``cd roundup-2.2.0`` 4. ``python demo.py``