-
Notifications
You must be signed in to change notification settings - Fork 758
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
install_* requires user to have pdftex if package has a vignette #173
Comments
We should attempt to detect if pdftex is available, and if not, don't try and install vignettes. - Hadley |
Check for |
And pass |
one quick thought: is specifying |
@bbolker no, |
build: if pdflatex not present, don't build vignettes. Fixes #173
This might be something you guys want to think about. When a person runs
install_github
(and maybe otherinstall_
*'s), devtools retrieves a copy of the package, and then R builds and installs it on the user's machine.If the package has an Sweave vignette, R build will try to find a program to compile the vignette and then error out if the user doesn't have one.
I'm guessing that a lot of R users won't have latex installed and won't be able to figure out the error message, which may make it harder to use
install_github
and github.Garrett
p.s. Also, I could be completely wrong about this :P
The text was updated successfully, but these errors were encountered: