alexgand / springer_free_books

Python script to download all Springer books released for free during the 2020 COVID-19 quarantine
GNU General Public License v3.0
1.64k stars 366 forks source link

Where are the downloaded files? #87

Closed alexhkurz closed 4 years ago

alexhkurz commented 4 years ago

Hi, thanks a lot for this program ... but I cannot find the downloaded files. I tried various versions of

docker build . -t springer-image docker run --rm -v [local_download_folder]:/app/downloads springer-image

dbautistav commented 4 years ago

If you followed the instructions for docker:

cd \home[user]\workspace git clone https://github.com/alexgand/springer_free_books.git cd springer_free_books mkdir downloads docker build . -t springer-image docker run --rm -v [local_download_folder]:/app/downloads springer-image

You can replace [local_download_folder] with: \home\[user]\workspace\springer_free_books\downloads. Note that you still need to update your [user] path.

For example, in linux: docker run --rm -v ~/springer_free_books/downloads:/app/downloads springer-image

Read more about volumes.

alexhkurz commented 4 years ago

Thanks ... this works.

On May 6, 2020, at 12:06, David Bautista notifications@github.com wrote:

If you followed the instructions for docker:

cd \home[user]\workspace git clone https://github.com/alexgand/springer_free_books.git cd springer_free_books mkdir downloads docker build . -t springer-image docker run --rm -v [local_download_folder]:/app/downloads springer-image

You can replace [local_download_folder] with: \home[user]\workspace\springer_free_books\downloads. Note that you still need to update your [user] path.

For example, in linux: docker run --rm -v ~/springer_free_books/downloads:/app/downloads springer-image

Read more about volumes.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or unsubscribe.