You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: Vagrantfile
+4-2
Original file line number
Diff line number
Diff line change
@@ -61,12 +61,14 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
61
61
echo Starting provisioning...
62
62
sudo apt-get update
63
63
sudo apt-get install -y build-essential
64
-
sudo apt-get install -y texlive-full
64
+
sudo apt-get install -y texlive
65
+
# texlive-science contains the SIunitx LaTeX package which is needed for quantities.py
66
+
sudo apt-get install -y texlive-science
65
67
sudo apt-get install -y imagemagick
66
68
sudo apt-get install -y python3-pip
67
69
sudo apt-get build-dep -y python-matplotlib
68
70
pip3 install -e /vagrant[all]
69
-
sudo echo -e "Cd into /vagrant and execute \"./testall.sh -p python3\" to run tests." > /etc/motd.tail
71
+
echo 'You can now cd into /vagrant and execute "./testall.sh -p python3" to run PyLaTeX tests.' | sudo tee --append /etc/update-motd.d/100-pylatex-info
0 commit comments