Minikube requires that VT-x/AMD-v virtualization is enabled in BIOS. To check that this is enabled on OSX / macOS run:
sysctl -a | grep machdep.cpu.features | grep VMX
If there's output, you're good!
| #!/usr/bin/env python3 | |
| ''' | |
| Thanks to Andres Torres | |
| Source: https://www.pythoncentral.io/introduction-to-sqlite-in-python/ | |
| ''' | |
| import sqlite3 | |
| # Create a database in RAM |