Last active
April 1, 2017 19:40
-
-
Save RasPhilCo/33461dd58ea25e48eab599a87c670152 to your computer and use it in GitHub Desktop.
barebones ubuntu with tensorflow
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure(2) do |config| | |
config.vm.box = "ubuntu/trusty64" | |
config.vm.provider "virtualbox" do |vb| | |
vb.memory = "4096" | |
vb.cpus = "2" | |
end | |
config.vm.provision "shell", inline: <<-SHELL | |
apt-get update -qq | |
apt-get install -yq python-pip | |
apt-get install -yq python-numpy python-scipy python-matplotlib | |
apt-get autoremove -yq | |
pip install --upgrade pip | |
pip install tensorflow | |
SHELL | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment