“Conecte Kaggle a Colab” Código de respuesta

Conectando Kaggle a Google Colab

! pip install kaggle # Install the Kaggle library
! mkdir ~/.kaggle # Make a directory named “.kaggle”
! cp kaggle.json ~/.kaggle/ # Copy the “kaggle.json” into this new directory
! chmod 600 ~/.kaggle/kaggle.json # Allocate the required permission for this file.
! kaggle competitions download <name-of-competition> # Downloading Competitions dataset
! kaggle datasets download <name-of-dataset> # Downloading Datasets
nilotpalc

Conecte Kaggle a Colab

! pip install -q kaggle

from google.colab import files
files.upload()

! mkdir ~/.kaggle
! cp kaggle.json ~/.kaggle/

!chmod 600 ~/.kaggle/kaggle.json

! kaggle datasets list  # to check if it is working

!kaggle competitions download -c tabular-playground-series-mar-2021
Aggressive Anteater

Respuestas similares a “Conecte Kaggle a Colab”

Preguntas similares a “Conecte Kaggle a Colab”

Más respuestas relacionadas con “Conecte Kaggle a Colab” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código