Google Colab-ValueError: Mountpoint must be in a directory that exists
I want to mount google drive on google Colab and I am using this command to mount the drive
from google.colab import drive
drive.mount('/content/drive/')
but I am getting this error
ValueError Traceback (most recent call last)
<ipython-input-45-9667a744255b> in <module>()
1 from google.colab import drive
----> 2 drive.mount('content/drive/')
/usr/local/lib/python3.6/dist-packages/google/colab/drive.py in
mount(mountpoint, force_remount)
99 raise ValueError('Mountpoint must either be a directory or not exist')
100 if '/' in mountpoint and not _os.path.exists(_os.path.dirname(mountpoint)):
--> 101 raise ValueError('Mountpoint must be in a directory that exists')
102 except:
103 d.terminate(force=True)
ValueError: Mountpoint must be in a directory that exists
python google-colaboratory valueerror
add a comment |
I want to mount google drive on google Colab and I am using this command to mount the drive
from google.colab import drive
drive.mount('/content/drive/')
but I am getting this error
ValueError Traceback (most recent call last)
<ipython-input-45-9667a744255b> in <module>()
1 from google.colab import drive
----> 2 drive.mount('content/drive/')
/usr/local/lib/python3.6/dist-packages/google/colab/drive.py in
mount(mountpoint, force_remount)
99 raise ValueError('Mountpoint must either be a directory or not exist')
100 if '/' in mountpoint and not _os.path.exists(_os.path.dirname(mountpoint)):
--> 101 raise ValueError('Mountpoint must be in a directory that exists')
102 except:
103 d.terminate(force=True)
ValueError: Mountpoint must be in a directory that exists
python google-colaboratory valueerror
drive.mount('/content/drive') does not work anymore for me too since yesterday (January 19). Did Google Colab change something? I have not changed anything on my side and this command has been working for months.
– u2gilles
Jan 19 at 3:19
add a comment |
I want to mount google drive on google Colab and I am using this command to mount the drive
from google.colab import drive
drive.mount('/content/drive/')
but I am getting this error
ValueError Traceback (most recent call last)
<ipython-input-45-9667a744255b> in <module>()
1 from google.colab import drive
----> 2 drive.mount('content/drive/')
/usr/local/lib/python3.6/dist-packages/google/colab/drive.py in
mount(mountpoint, force_remount)
99 raise ValueError('Mountpoint must either be a directory or not exist')
100 if '/' in mountpoint and not _os.path.exists(_os.path.dirname(mountpoint)):
--> 101 raise ValueError('Mountpoint must be in a directory that exists')
102 except:
103 d.terminate(force=True)
ValueError: Mountpoint must be in a directory that exists
python google-colaboratory valueerror
I want to mount google drive on google Colab and I am using this command to mount the drive
from google.colab import drive
drive.mount('/content/drive/')
but I am getting this error
ValueError Traceback (most recent call last)
<ipython-input-45-9667a744255b> in <module>()
1 from google.colab import drive
----> 2 drive.mount('content/drive/')
/usr/local/lib/python3.6/dist-packages/google/colab/drive.py in
mount(mountpoint, force_remount)
99 raise ValueError('Mountpoint must either be a directory or not exist')
100 if '/' in mountpoint and not _os.path.exists(_os.path.dirname(mountpoint)):
--> 101 raise ValueError('Mountpoint must be in a directory that exists')
102 except:
103 d.terminate(force=True)
ValueError: Mountpoint must be in a directory that exists
python google-colaboratory valueerror
python google-colaboratory valueerror
edited Jan 21 at 10:02
clarky
asked Jan 17 at 7:23
clarkyclarky
61111
61111
drive.mount('/content/drive') does not work anymore for me too since yesterday (January 19). Did Google Colab change something? I have not changed anything on my side and this command has been working for months.
– u2gilles
Jan 19 at 3:19
add a comment |
drive.mount('/content/drive') does not work anymore for me too since yesterday (January 19). Did Google Colab change something? I have not changed anything on my side and this command has been working for months.
– u2gilles
Jan 19 at 3:19
drive.mount('/content/drive') does not work anymore for me too since yesterday (January 19). Did Google Colab change something? I have not changed anything on my side and this command has been working for months.
– u2gilles
Jan 19 at 3:19
drive.mount('/content/drive') does not work anymore for me too since yesterday (January 19). Did Google Colab change something? I have not changed anything on my side and this command has been working for months.
– u2gilles
Jan 19 at 3:19
add a comment |
7 Answers
7
active
oldest
votes
@clarky: the error you got was correct tried to tell you that your usage of drive.mount() is incorrect: the mountpoint argument to drive.mount() must be an empty directory that exists, or the name of a non-existent file/directory in a directory that does exist so that the mountpoint can be created as part of the mount operation. Your usage of a relative path in drive.mount('content/drive/')
(i.e. content/drive/
) implies that the mount should happen at '/content/content/drive'
because the interpreter's default path is /content
; note the doubled content
path component there, and likely you don't already have a directory named /content/content inside of which a mountpoint named drive
could be created. The fix to your notebook code is to instead use drive.mount('/content/drive')
- note the leading /
making the mountpount path absolute instead of relative.
add a comment |
I ran into this error this morning as well. I'm not sure what this commit what meant to fix but it certainly caused the error. A workaround is to copy the code for drive.py into colab, comment out lines 100
and 101
like this:
# drive.py
...
try:
if _os.path.islink(mountpoint):
raise ValueError('Mountpoint must not be a symlink')
if _os.path.isdir(mountpoint) and _os.listdir(mountpoint):
raise ValueError('Mountpoint must not already contain files')
if not _os.path.isdir(mountpoint) and _os.path.exists(mountpoint):
raise ValueError('Mountpoint must either be a directory or not exist')
# if '/' in mountpoint and not _os.path.exists(_os.path.dirname(mountpoint)):
# raise ValueError('Mountpoint must be in a directory that exists')
except:
d.terminate(force=True)
raise
...
then replace
from google.colab import drive
drive.mount('content/drive/')
with
mount('/content/drive/')
using the mount
function you copied from drive.py
Hopefully the issue gets fixed quickly enough so we can do away with this workaround.
I tried using your approach. But the authentication takes forever. Its not working.
– clarky
Jan 17 at 13:33
What part of the authentication took forever?
– Jimi
Jan 17 at 13:45
@Jimi: Your suggestion works because of the replacement of the relative path with an absolute one; the commenting-out is irrelevant.
– Ami F
Jan 17 at 18:08
@clarky: if you are seeing timeout errors during authentication please chime in on github.com/googlecolab/colabtools/issues/382
– Ami F
Jan 17 at 18:09
@AmiF Nope. I had ‘/content/drive’ when it failed for me
– Jimi
Jan 17 at 20:54
|
show 2 more comments
I received the error as well change to drive.mount('/content/drive')
add a comment |
just remove the '/' following the drive and it works perfectly..
That is from drive.mount('/content/drive/') to drive.mount('/content/drive')
can you please explain your answer so OP can understand what is error in his code. thanks
– Shanteshwar Inde
Jan 20 at 7:00
add a comment |
Run command to unmount drive first.
!fusermount -u drive
Then try run again,
from google.colab import drive
drive.mount('/content/drive')
FYI instead of hard-codingfusermount
you should probably use theforce_remount=True
param todrive.mount()
– Ami F
Jan 17 at 18:10
add a comment |
If mounting does not work even if absolute path /content/drive
was used, then verify that appropriate directories exist,
!mdkir -p /content/drive
add a comment |
Replace drive.mount('/content/drive/')
by drive.mount('/content/drive')
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54230871%2fgoogle-colab-valueerror-mountpoint-must-be-in-a-directory-that-exists%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
7 Answers
7
active
oldest
votes
7 Answers
7
active
oldest
votes
active
oldest
votes
active
oldest
votes
@clarky: the error you got was correct tried to tell you that your usage of drive.mount() is incorrect: the mountpoint argument to drive.mount() must be an empty directory that exists, or the name of a non-existent file/directory in a directory that does exist so that the mountpoint can be created as part of the mount operation. Your usage of a relative path in drive.mount('content/drive/')
(i.e. content/drive/
) implies that the mount should happen at '/content/content/drive'
because the interpreter's default path is /content
; note the doubled content
path component there, and likely you don't already have a directory named /content/content inside of which a mountpoint named drive
could be created. The fix to your notebook code is to instead use drive.mount('/content/drive')
- note the leading /
making the mountpount path absolute instead of relative.
add a comment |
@clarky: the error you got was correct tried to tell you that your usage of drive.mount() is incorrect: the mountpoint argument to drive.mount() must be an empty directory that exists, or the name of a non-existent file/directory in a directory that does exist so that the mountpoint can be created as part of the mount operation. Your usage of a relative path in drive.mount('content/drive/')
(i.e. content/drive/
) implies that the mount should happen at '/content/content/drive'
because the interpreter's default path is /content
; note the doubled content
path component there, and likely you don't already have a directory named /content/content inside of which a mountpoint named drive
could be created. The fix to your notebook code is to instead use drive.mount('/content/drive')
- note the leading /
making the mountpount path absolute instead of relative.
add a comment |
@clarky: the error you got was correct tried to tell you that your usage of drive.mount() is incorrect: the mountpoint argument to drive.mount() must be an empty directory that exists, or the name of a non-existent file/directory in a directory that does exist so that the mountpoint can be created as part of the mount operation. Your usage of a relative path in drive.mount('content/drive/')
(i.e. content/drive/
) implies that the mount should happen at '/content/content/drive'
because the interpreter's default path is /content
; note the doubled content
path component there, and likely you don't already have a directory named /content/content inside of which a mountpoint named drive
could be created. The fix to your notebook code is to instead use drive.mount('/content/drive')
- note the leading /
making the mountpount path absolute instead of relative.
@clarky: the error you got was correct tried to tell you that your usage of drive.mount() is incorrect: the mountpoint argument to drive.mount() must be an empty directory that exists, or the name of a non-existent file/directory in a directory that does exist so that the mountpoint can be created as part of the mount operation. Your usage of a relative path in drive.mount('content/drive/')
(i.e. content/drive/
) implies that the mount should happen at '/content/content/drive'
because the interpreter's default path is /content
; note the doubled content
path component there, and likely you don't already have a directory named /content/content inside of which a mountpoint named drive
could be created. The fix to your notebook code is to instead use drive.mount('/content/drive')
- note the leading /
making the mountpount path absolute instead of relative.
answered Jan 17 at 18:08
Ami FAmi F
74328
74328
add a comment |
add a comment |
I ran into this error this morning as well. I'm not sure what this commit what meant to fix but it certainly caused the error. A workaround is to copy the code for drive.py into colab, comment out lines 100
and 101
like this:
# drive.py
...
try:
if _os.path.islink(mountpoint):
raise ValueError('Mountpoint must not be a symlink')
if _os.path.isdir(mountpoint) and _os.listdir(mountpoint):
raise ValueError('Mountpoint must not already contain files')
if not _os.path.isdir(mountpoint) and _os.path.exists(mountpoint):
raise ValueError('Mountpoint must either be a directory or not exist')
# if '/' in mountpoint and not _os.path.exists(_os.path.dirname(mountpoint)):
# raise ValueError('Mountpoint must be in a directory that exists')
except:
d.terminate(force=True)
raise
...
then replace
from google.colab import drive
drive.mount('content/drive/')
with
mount('/content/drive/')
using the mount
function you copied from drive.py
Hopefully the issue gets fixed quickly enough so we can do away with this workaround.
I tried using your approach. But the authentication takes forever. Its not working.
– clarky
Jan 17 at 13:33
What part of the authentication took forever?
– Jimi
Jan 17 at 13:45
@Jimi: Your suggestion works because of the replacement of the relative path with an absolute one; the commenting-out is irrelevant.
– Ami F
Jan 17 at 18:08
@clarky: if you are seeing timeout errors during authentication please chime in on github.com/googlecolab/colabtools/issues/382
– Ami F
Jan 17 at 18:09
@AmiF Nope. I had ‘/content/drive’ when it failed for me
– Jimi
Jan 17 at 20:54
|
show 2 more comments
I ran into this error this morning as well. I'm not sure what this commit what meant to fix but it certainly caused the error. A workaround is to copy the code for drive.py into colab, comment out lines 100
and 101
like this:
# drive.py
...
try:
if _os.path.islink(mountpoint):
raise ValueError('Mountpoint must not be a symlink')
if _os.path.isdir(mountpoint) and _os.listdir(mountpoint):
raise ValueError('Mountpoint must not already contain files')
if not _os.path.isdir(mountpoint) and _os.path.exists(mountpoint):
raise ValueError('Mountpoint must either be a directory or not exist')
# if '/' in mountpoint and not _os.path.exists(_os.path.dirname(mountpoint)):
# raise ValueError('Mountpoint must be in a directory that exists')
except:
d.terminate(force=True)
raise
...
then replace
from google.colab import drive
drive.mount('content/drive/')
with
mount('/content/drive/')
using the mount
function you copied from drive.py
Hopefully the issue gets fixed quickly enough so we can do away with this workaround.
I tried using your approach. But the authentication takes forever. Its not working.
– clarky
Jan 17 at 13:33
What part of the authentication took forever?
– Jimi
Jan 17 at 13:45
@Jimi: Your suggestion works because of the replacement of the relative path with an absolute one; the commenting-out is irrelevant.
– Ami F
Jan 17 at 18:08
@clarky: if you are seeing timeout errors during authentication please chime in on github.com/googlecolab/colabtools/issues/382
– Ami F
Jan 17 at 18:09
@AmiF Nope. I had ‘/content/drive’ when it failed for me
– Jimi
Jan 17 at 20:54
|
show 2 more comments
I ran into this error this morning as well. I'm not sure what this commit what meant to fix but it certainly caused the error. A workaround is to copy the code for drive.py into colab, comment out lines 100
and 101
like this:
# drive.py
...
try:
if _os.path.islink(mountpoint):
raise ValueError('Mountpoint must not be a symlink')
if _os.path.isdir(mountpoint) and _os.listdir(mountpoint):
raise ValueError('Mountpoint must not already contain files')
if not _os.path.isdir(mountpoint) and _os.path.exists(mountpoint):
raise ValueError('Mountpoint must either be a directory or not exist')
# if '/' in mountpoint and not _os.path.exists(_os.path.dirname(mountpoint)):
# raise ValueError('Mountpoint must be in a directory that exists')
except:
d.terminate(force=True)
raise
...
then replace
from google.colab import drive
drive.mount('content/drive/')
with
mount('/content/drive/')
using the mount
function you copied from drive.py
Hopefully the issue gets fixed quickly enough so we can do away with this workaround.
I ran into this error this morning as well. I'm not sure what this commit what meant to fix but it certainly caused the error. A workaround is to copy the code for drive.py into colab, comment out lines 100
and 101
like this:
# drive.py
...
try:
if _os.path.islink(mountpoint):
raise ValueError('Mountpoint must not be a symlink')
if _os.path.isdir(mountpoint) and _os.listdir(mountpoint):
raise ValueError('Mountpoint must not already contain files')
if not _os.path.isdir(mountpoint) and _os.path.exists(mountpoint):
raise ValueError('Mountpoint must either be a directory or not exist')
# if '/' in mountpoint and not _os.path.exists(_os.path.dirname(mountpoint)):
# raise ValueError('Mountpoint must be in a directory that exists')
except:
d.terminate(force=True)
raise
...
then replace
from google.colab import drive
drive.mount('content/drive/')
with
mount('/content/drive/')
using the mount
function you copied from drive.py
Hopefully the issue gets fixed quickly enough so we can do away with this workaround.
answered Jan 17 at 9:28
JimiJimi
484418
484418
I tried using your approach. But the authentication takes forever. Its not working.
– clarky
Jan 17 at 13:33
What part of the authentication took forever?
– Jimi
Jan 17 at 13:45
@Jimi: Your suggestion works because of the replacement of the relative path with an absolute one; the commenting-out is irrelevant.
– Ami F
Jan 17 at 18:08
@clarky: if you are seeing timeout errors during authentication please chime in on github.com/googlecolab/colabtools/issues/382
– Ami F
Jan 17 at 18:09
@AmiF Nope. I had ‘/content/drive’ when it failed for me
– Jimi
Jan 17 at 20:54
|
show 2 more comments
I tried using your approach. But the authentication takes forever. Its not working.
– clarky
Jan 17 at 13:33
What part of the authentication took forever?
– Jimi
Jan 17 at 13:45
@Jimi: Your suggestion works because of the replacement of the relative path with an absolute one; the commenting-out is irrelevant.
– Ami F
Jan 17 at 18:08
@clarky: if you are seeing timeout errors during authentication please chime in on github.com/googlecolab/colabtools/issues/382
– Ami F
Jan 17 at 18:09
@AmiF Nope. I had ‘/content/drive’ when it failed for me
– Jimi
Jan 17 at 20:54
I tried using your approach. But the authentication takes forever. Its not working.
– clarky
Jan 17 at 13:33
I tried using your approach. But the authentication takes forever. Its not working.
– clarky
Jan 17 at 13:33
What part of the authentication took forever?
– Jimi
Jan 17 at 13:45
What part of the authentication took forever?
– Jimi
Jan 17 at 13:45
@Jimi: Your suggestion works because of the replacement of the relative path with an absolute one; the commenting-out is irrelevant.
– Ami F
Jan 17 at 18:08
@Jimi: Your suggestion works because of the replacement of the relative path with an absolute one; the commenting-out is irrelevant.
– Ami F
Jan 17 at 18:08
@clarky: if you are seeing timeout errors during authentication please chime in on github.com/googlecolab/colabtools/issues/382
– Ami F
Jan 17 at 18:09
@clarky: if you are seeing timeout errors during authentication please chime in on github.com/googlecolab/colabtools/issues/382
– Ami F
Jan 17 at 18:09
@AmiF Nope. I had ‘/content/drive’ when it failed for me
– Jimi
Jan 17 at 20:54
@AmiF Nope. I had ‘/content/drive’ when it failed for me
– Jimi
Jan 17 at 20:54
|
show 2 more comments
I received the error as well change to drive.mount('/content/drive')
add a comment |
I received the error as well change to drive.mount('/content/drive')
add a comment |
I received the error as well change to drive.mount('/content/drive')
I received the error as well change to drive.mount('/content/drive')
answered Jan 17 at 19:26
PinkertonPinkerton
111
111
add a comment |
add a comment |
just remove the '/' following the drive and it works perfectly..
That is from drive.mount('/content/drive/') to drive.mount('/content/drive')
can you please explain your answer so OP can understand what is error in his code. thanks
– Shanteshwar Inde
Jan 20 at 7:00
add a comment |
just remove the '/' following the drive and it works perfectly..
That is from drive.mount('/content/drive/') to drive.mount('/content/drive')
can you please explain your answer so OP can understand what is error in his code. thanks
– Shanteshwar Inde
Jan 20 at 7:00
add a comment |
just remove the '/' following the drive and it works perfectly..
That is from drive.mount('/content/drive/') to drive.mount('/content/drive')
just remove the '/' following the drive and it works perfectly..
That is from drive.mount('/content/drive/') to drive.mount('/content/drive')
answered Jan 20 at 6:52
Prashanth SateeshPrashanth Sateesh
111
111
can you please explain your answer so OP can understand what is error in his code. thanks
– Shanteshwar Inde
Jan 20 at 7:00
add a comment |
can you please explain your answer so OP can understand what is error in his code. thanks
– Shanteshwar Inde
Jan 20 at 7:00
can you please explain your answer so OP can understand what is error in his code. thanks
– Shanteshwar Inde
Jan 20 at 7:00
can you please explain your answer so OP can understand what is error in his code. thanks
– Shanteshwar Inde
Jan 20 at 7:00
add a comment |
Run command to unmount drive first.
!fusermount -u drive
Then try run again,
from google.colab import drive
drive.mount('/content/drive')
FYI instead of hard-codingfusermount
you should probably use theforce_remount=True
param todrive.mount()
– Ami F
Jan 17 at 18:10
add a comment |
Run command to unmount drive first.
!fusermount -u drive
Then try run again,
from google.colab import drive
drive.mount('/content/drive')
FYI instead of hard-codingfusermount
you should probably use theforce_remount=True
param todrive.mount()
– Ami F
Jan 17 at 18:10
add a comment |
Run command to unmount drive first.
!fusermount -u drive
Then try run again,
from google.colab import drive
drive.mount('/content/drive')
Run command to unmount drive first.
!fusermount -u drive
Then try run again,
from google.colab import drive
drive.mount('/content/drive')
answered Jan 17 at 16:06
Pradeep SakhareliaPradeep Sakharelia
1
1
FYI instead of hard-codingfusermount
you should probably use theforce_remount=True
param todrive.mount()
– Ami F
Jan 17 at 18:10
add a comment |
FYI instead of hard-codingfusermount
you should probably use theforce_remount=True
param todrive.mount()
– Ami F
Jan 17 at 18:10
FYI instead of hard-coding
fusermount
you should probably use the force_remount=True
param to drive.mount()
– Ami F
Jan 17 at 18:10
FYI instead of hard-coding
fusermount
you should probably use the force_remount=True
param to drive.mount()
– Ami F
Jan 17 at 18:10
add a comment |
If mounting does not work even if absolute path /content/drive
was used, then verify that appropriate directories exist,
!mdkir -p /content/drive
add a comment |
If mounting does not work even if absolute path /content/drive
was used, then verify that appropriate directories exist,
!mdkir -p /content/drive
add a comment |
If mounting does not work even if absolute path /content/drive
was used, then verify that appropriate directories exist,
!mdkir -p /content/drive
If mounting does not work even if absolute path /content/drive
was used, then verify that appropriate directories exist,
!mdkir -p /content/drive
answered Jan 18 at 14:42
azdobylakazdobylak
11
11
add a comment |
add a comment |
Replace drive.mount('/content/drive/')
by drive.mount('/content/drive')
add a comment |
Replace drive.mount('/content/drive/')
by drive.mount('/content/drive')
add a comment |
Replace drive.mount('/content/drive/')
by drive.mount('/content/drive')
Replace drive.mount('/content/drive/')
by drive.mount('/content/drive')
answered Jan 19 at 18:34
Endy Bermúdez REndy Bermúdez R
62
62
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54230871%2fgoogle-colab-valueerror-mountpoint-must-be-in-a-directory-that-exists%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
drive.mount('/content/drive') does not work anymore for me too since yesterday (January 19). Did Google Colab change something? I have not changed anything on my side and this command has been working for months.
– u2gilles
Jan 19 at 3:19