988
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
this post was submitted on 15 Jul 2023
988 points (100.0% liked)
Piracy: ꜱᴀɪʟ ᴛʜᴇ ʜɪɢʜ ꜱᴇᴀꜱ
54390 readers
80 users here now
⚓ Dedicated to the discussion of digital piracy, including ethical problems and legal advancements.
Rules • Full Version
1. Posts must be related to the discussion of digital piracy
2. Don't request invites, trade, sell, or self-promote
3. Don't request or link to specific pirated titles, including DMs
4. Don't submit low-quality posts, be entitled, or harass others
Loot, Pillage, & Plunder
📜 c/Piracy Wiki (Community Edition):
💰 Please help cover server costs.
Ko-fi | Liberapay |
founded 1 year ago
MODERATORS
Update: This is awesome. To get it working I had to install some python3 dependencies since I'd recently upgraded my box. If the main
DeGourou.py
script isn't running, try installing these:$ pip3 install lxml pycryptodome cryptography charset_normalizer
(EDIT: just read
requirements.txt
it gives the above and some other dependencies. Duh.)Then download, while logged into archive.org, your borrowed book (download link should be "URLLink.acsm"; then run
$ python3 ./DeGourou.py -f /tmp/URLLink.acsm
... and the PDF with its proper filename will be saved into the curret directory.
pip install -r requirements.txt
That's how you install everything a project needs ;)
Thank you :) I didn't realize it was literally a script to install requirements!
It's not. It's a list of packages that python, when it sees the list, knows to download whilst maintaining compatibility and prevent circular dependencies (if possible)