import json
import runpod
with open("credentials.json", "r") as f:
credentials = json.load(f)
runpod.api_key = credentials['RUNPOD_KEY']
pod = runpod.create_pod(
cloud_type="SECURE", # or else someone might snoop your session and steal your AWS/CDS credentials
name=f"easy-graphcast1",
image_name="runpod/pytorch:2.1.1-py3.10-cuda12.1.1-devel-ubuntu22.04",
gpu_type_id="NVIDIA A100 80GB PCIe",
container_disk_in_gb=30
)
import json
import runpod
with open("credentials.json", "r") as f:
credentials = json.load(f)
runpod.api_key = credentials['RUNPOD_KEY']
pod = runpod.create_pod(
cloud_type="SECURE", # or else someone might snoop your session and steal your AWS/CDS credentials
name=f"easy-graphcast1",
image_name="runpod/pytorch:2.1.1-py3.10-cuda12.1.1-devel-ubuntu22.04",
gpu_type_id="NVIDIA A100 80GB PCIe",
container_disk_in_gb=30
)