Skip to content

Instantly share code, notes, and snippets.

@RasPhilCo
Last active April 1, 2017 19:40
Show Gist options
  • Save RasPhilCo/33461dd58ea25e48eab599a87c670152 to your computer and use it in GitHub Desktop.
Save RasPhilCo/33461dd58ea25e48eab599a87c670152 to your computer and use it in GitHub Desktop.
barebones ubuntu with tensorflow
# -*- 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