This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-x86_64.sh | |
bash Miniforge3-Linux-x86_64.sh -b | |
~/miniforge3/bin/conda init | |
bash | |
conda create -n yolox python=3.8 | |
conda activate yolox |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from tqdm import tqdm | |
from pydrive.auth import GoogleAuth | |
from pydrive.drive import GoogleDrive | |
gauth = GoogleAuth() | |
drive = GoogleDrive(gauth) | |
# View all folders and file in your Google Drive | |
# fileList = drive.ListFile({'q': "'root' in parents"}).GetList() |