Skip to content

Commit 0122fba

Browse files
sebastianhaasJelteF
authored andcommittedSep 11, 2015
Updated Vagrantfile. Now using a smaller livetex package.
1 parent fa483a8 commit 0122fba

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
 

‎Vagrantfile

+4-2
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,14 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
6161
echo Starting provisioning...
6262
sudo apt-get update
6363
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
6567
sudo apt-get install -y imagemagick
6668
sudo apt-get install -y python3-pip
6769
sudo apt-get build-dep -y python-matplotlib
6870
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
7072
echo Provisioning finished.
7173
7274
echo Running unit tests and generate docs...

0 commit comments

Comments
 (0)
Please sign in to comment.