If you need CUDA Tolkit 11 with nvcc, other tools and libraries you can install it from NVIDIA Ubunutu 20.04 repository.
Add Ubuntu 20.04 repository
| -- From https://github.com/geckoboard/pgulid/blob/d6187a00f66dca196cf5242588f87c3a7969df75/pgulid.sql | |
| -- | |
| -- pgulid is based on OK Log's Go implementation of the ULID spec | |
| -- | |
| -- https://github.com/oklog/ulid | |
| -- https://github.com/ulid/spec | |
| -- | |
| -- Copyright 2016 The Oklog Authors | |
| -- Licensed under the Apache License, Version 2.0 (the "License"); | |
| -- you may not use this file except in compliance with the License. |
| #!/usr/bin/env python3 | |
| import sqlite3 | |
| import re | |
| import json | |
| import argparse | |
| def convert(db, filename): | |
| con = sqlite3.connect(db) | |
| cur = con.cursor() | |
| with open(filename, "r") as f: |