Created
September 9, 2021 10:47
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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