Skip to content

Instantly share code, notes, and snippets.

@thomas-schuster
Created September 9, 2021 10:47
Show Gist options
  • Save thomas-schuster/12460dac1ecc5acf70a7649c3eecec38 to your computer and use it in GitHub Desktop.
Save thomas-schuster/12460dac1ecc5acf70a7649c3eecec38 to your computer and use it in GitHub Desktop.
Vagrant configuration to start a machine learning box with common python libraries
# Diese Konfiguration benutzt eine Maschine, die über den Cloud-Dienst
# vagrantup bezogen und anschließend über VirtualBox mit aktivierter
# Oberfläche ausgeführt wird.
Vagrant.configure("2") do |config|
# Bezug der Box von der Vagrant Cloud
# Weitere Boxen unter: https://vagrantcloud.com/search
config.vm.box = "thomas42/mlbox"
config.vm.box_version = "0.42"
config.vm.provider "virtualbox" do |vb|
# Oberfläche starten
vb.gui = true
# Hauptspeicher auf 8GB setzen
vb.memory = "8096"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment