medium_to_ghost icon indicating copy to clipboard operation
medium_to_ghost copied to clipboard

"Unable to find medium-export.zip" error

Open isthisish opened this issue 4 years ago • 1 comments

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?

isthisish avatar Nov 24 '20 03:11 isthisish

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.

ageitgey avatar Dec 04 '20 10:12 ageitgey