We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
the download functionality on windows fails when some directories have blanks included ("Cloud SDK", see below)
the following command
cmd /c C:\Users\User\AppData\Local\Google\Cloud SDK\google-cloud-sdk\bin\gsutil.cmd -m cp -r gs://project/r-cloudml/runs/project_Number/* C:/Users/User/RProjectFolder/runs/project_Number
would fail with
C:\Users\User\AppData\Local\Google\Cloud' is not recognized as an internal or external command, operable program or batch file
it is a windows issue here. It does not like the directory "Cloud SDK"...
for cmd /c you need double quotation... like
cmd /c ""C:\Users\User\AppData\Local\Google\Cloud SDK\google-cloud-sdk\bin\gsutil.cmd" -m cp -r "gs://project/r-cloudml/runs/project_Number/*" "C:/Users/User/RProjectFolder/runs/project_Number"
did not find the part which need to be changed. when you tell me I can try and commit the solution
The text was updated successfully, but these errors were encountered:
No branches or pull requests
the download functionality on windows fails when some directories have blanks included ("Cloud SDK", see below)
the following command
cmd /c C:\Users\User\AppData\Local\Google\Cloud SDK\google-cloud-sdk\bin\gsutil.cmd -m cp -r gs://project/r-cloudml/runs/project_Number/* C:/Users/User/RProjectFolder/runs/project_Number
would fail with
C:\Users\User\AppData\Local\Google\Cloud' is not recognized as an internal or external command, operable program or batch file
it is a windows issue here. It does not like the directory "Cloud SDK"...
for cmd /c you need double quotation... like
cmd /c ""C:\Users\User\AppData\Local\Google\Cloud SDK\google-cloud-sdk\bin\gsutil.cmd" -m cp -r "gs://project/r-cloudml/runs/project_Number/*" "C:/Users/User/RProjectFolder/runs/project_Number"
did not find the part which need to be changed. when you tell me I can try and commit the solution
The text was updated successfully, but these errors were encountered: