Installieren Sie dies auf Ihrem Mac http://xquartz.macosforge.org/landing/
Vagrantfile
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.ssh.forward_x11 = true #Füge das hinzu
end
python
$ vagrant up
$ vagrant ssh
vagrant@vagrant-ubuntu-trusty-64:~$ sudo apt-get update
vagrant@vagrant-ubuntu-trusty-64:~$ sudo apt-get install -y xorg python-matplotlib python-numpy python-scipy ipython
python
$ vagrant reload
$ vagrant ssh
vagrant@vagrant-ubuntu-trusty-64:~$ ipython --pylab
In [1]: import matplotlib.pyplot as plot
In [2]: import scipy as sp
In [3]: x = sp.arange(1,100)
In [4]: plot.scatter(x, x**2)
Wenn vagrant ssh
/home/vagrant/.Xauthority not writable, changes will be ignored
Wenn Sie sehen, löschen Sie ~ / .Xauthority *
und versuchen Sie erneut, sich anzumelden.