- Python 3.7 from https://www.python.org/downloads/
- Your personal pen / flash drives for Softwares.
- install jupyter notebook. Details at https://jupyter.org/install
pip install jupyter
pip install jupyter
# Info on how to get your api key (kaggle.json) here: https://github.com/Kaggle/kaggle-api#api-credentials | |
!pip install kaggle | |
api_token = {"username":"USERNAME","key":"API_KEY"} | |
import json | |
import zipfile | |
import os | |
with open('/content/.kaggle/kaggle.json', 'w') as file: | |
json.dump(api_token, file) | |
!chmod 600 /content/.kaggle/kaggle.json | |
!kaggle config path -p /content |
Additionally install jupyter notebook. Details at https://jupyter.org/install
pip install jupyter
Installations needed
You are expected to bring
Installations needed
You are expected to bring
package com.codingblocks; | |
import java.util.*; | |
public class AdjacencyMapGraph <T> { | |
private Map<T, Vertex> vertexMap; | |
private Map<Vertex, Vertex> parents; |
import cv2 | |
cap = cv2.VideoCapture(0) | |
while 1: | |
ret, img = cap.read() | |
cv2.imshow('img', img) |
JAVA_HOME