-
Notifications
You must be signed in to change notification settings - Fork 130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
windows? #5
Comments
|
This command worked for me in Powershell on Windows 10. The directory my terminal was in was this projects folder with siblings of Takeout and Output. To retain the albums/folders you get from takeout. Run this in powershell $inputRoot = '../Google Photos'
$outputRoot= '../output'
$dir = Get-ChildItem $inputRoot | ? {$_.PSIsContainer}
$dir | ForEach-Object {./bin/run.cmd --inputDir $(join-path $inputRoot $_) --outputDir $(join-path $outputRoot $_)} |
As a known person about node system. it took 5minutes for me to run. |
If you are using Windows Subsystem for Linux (WSL) Ubuntu to get node.js and npm/yarn working, and you THINK you're following the simple steps to get yarn installed on Ubuntu, know that the steps linked to above where you are adding a repository to pull yarn from are important, or you'll only get error messages about missing scenarios when you run yarn on the project. See this: |
When I execute the code, it gives me an error and says that the input directory must exist. I am new to all this, so if anyone can lend a hand that would be appreciated @adamnoffie @ugurozturk My code is as follows: All the folders are in the google-photos-exif folder to simplify things. It says I failed with exit code 2 in yarn. Additionally, when I execute yarn in the directory, I receive a warning that my project contains locked files generated by tools other than Yarn. Also if I look to see what version of nodejs I have, it says it cannot locate it. But I believe I downloaded it... |
Maybe I'm missing something here, but if your input directory is under the google-photos-exif folder, as you say, and you are executing from that directory, wouldn't your input directory be
seems like if you do "../PhotosGoogle" you'd but looking for the PhotosGoogle directory one directory "up", in the GitHub folder, since the double-dot means "up one directory" |
Thanks @cosmin8905, it worked a treat in an Ubuntu 22.04 VM |
How does someone run this tool using Windows 10?
The text was updated successfully, but these errors were encountered: