Closed Colabnoob closed 2 years ago
Is this issue related? https://github.com/wkentaro/gdown/issues/146
Yes but I’m using google Colab, does that make any difference? I’m not a expert at this kinda stuff
I'm not super familiar with Colab, but I don't think so. Maybe you can first make sure that you're using the latest gdown.
import gdown
print(gdown.__version__) # this should be 4.3.0
i added the command, it's still showing the same result, i have used different notebooks and different links and it didn't work however someone said that the first file successfully downloaded but the second one failed? this happened to me once and didn't work after but i used HIFI-GAN and after a few tries it actually downloaded, could it be my cookies? i never had this problem before
Can you confirm you're using the latest version of gdown? 4.3.0
%tensorflow_version 1.x import os from os.path import exists, join, basename, splitext !pip install gdown git_repo_url = 'https://github.com/NVIDIA/tacotron2.git' project_name = splitext(basename(git_repo_url))[0] if not exists(project_name):
!git clone -q --recursive {git_repo_url} !cd {project_name}/waveglow && git checkout 2fd4e63 !pip install -q librosa unidecode
import sys sys.path.append(join(project_name, 'waveglow/')) sys.path.append(project_name) import time import matplotlib import matplotlib.pylab as plt import gdown print(gdown.version) # this should be 4.3.0 d = 'https://drive.google.com/uc?id=' I imported it at the bottom and it loads successfully, still getting the same error..
What is the output of print(gdown.__version__)
?
Requirement already satisfied: gdown in /usr/local/lib/python3.7/dist-packages (4.2.1) Is this the output?
It says you're using gdown 4.2.1, which is an older version. That is potentially why you're still having the permission error.
You can upgrade gdown by !pip install --upgrade --no-cache-dir gdown
.
Yep this has worked, Thanks a lot for the support, really appreciate it!
🎉 You're welcome!
I got into the same problem. Thanks a lot ;)
It says you're using gdown 4.2.1, which is an older version. That is potentially why you're still having the permission error.
You can upgrade gdown by
!pip install --upgrade --no-cache-dir gdown
.
thanks
Access denied with the following error: Tacotron2 Model Downloaded Access denied with the following error:
You may still be able to access the file from the browser: Can anyone solve this issue? I'm using google colab