ageitgey / medium_to_ghost

Instantly move all your Medium.com content (formatted posts + images) to an open source Ghost blog!
MIT License
121 stars 13 forks source link

"Unable to find medium-export.zip" error #17

Open isthisish opened 3 years ago

isthisish commented 3 years ago

Hello!

I'm so close to being able to do this. I've done all the necessary steps. When I run the last command python3 -m medium_to_ghost.medium_to_ghost medium-export.zip, I get the Unable to find medium-export.zip error. My zip file is in my download. Am I missing anything?

ageitgey commented 3 years ago

You probably downloaded the zip file to a different folder than where you are running the command. You have to give the path to the file you downloaded. On Mac, that would be something like:

python3 -m medium_to_ghost.medium_to_ghost ~/Downloads/medium-export.zip

On Windows, it's probably something like:

python3 -m medium_to_ghost.medium_to_ghost "C:\Users\you\Downloads\medium-export.zip"

Or something like that. You'd have to check the exact folder name on your computer.