我想通过每次输入如下授权代码来将本地文件夹添加到Google colab中,而不使用Google驱动器:
from google.colab import drive
drive.mount('/content/drive')
%cd /content/drive/My\ Drive
相反,我想要这样的东西:
import sys
sys.path.insert(1, 'C:/Users/Bruh/Desktop/Master/Studienarbeit/Code') #i also tried here a 0 instead a 1
import os
os.chdir('C:/Users/Bruh/Desktop/Master/Studienarbeit/Code')
但是每次尝试,我都会得到一个
FileNotFoundError: [Errno 2] No such file or directory: 'C:/Users/Bruh/Desktop/Master/Studienarbeit/Code'
我的代码位于路径google驱动器和本地文件夹中,如上所示。这对我的朋友有点用,但对我却没有,他的做法完全一样:
import sys
sys.path.insert(1, 'C:/Users/fabia/.../CODE')
import os
os.chdir('C:/Users/fabia/.../CODE')
我也尝试过:
!mkdir -p 'C:/Users/Bruh/Desktop/Master/Studienarbeit/Code'
但这只会在/ content / ...处创建几个文件夹。