Groups | Search | Server Info | Keyboard shortcuts | Login | Register
Groups > comp.graphics.apps.gnuplot > #191
| From | James Waldby <not@valid.invalid> |
|---|---|
| Newsgroups | comp.graphics.apps.gnuplot |
| Subject | Re: updating gnuplot |
| Date | 2011-03-29 15:00 +0000 |
| Organization | A noiseless patient Spider |
| Message-ID | <imss71$g5g$3@dont-email.me> (permalink) |
| References | <8304c8a7-b732-4fad-a90b-c5ed5aac226c@a17g2000yqn.googlegroups.com> |
On Tue, 29 Mar 2011 03:48:37 -0700, Ze wrote: > I tryed to update gnuplot to the current version but it didn't work. > > I have gnuplot version 4.2.5 installed on my system which is Mac OSX > 10.6. [...] [at] /opt/local/bin/gnuplot > I downloaded the current version of gnuplot, 4.4.3, double clicked the > downloaded file to untar it, and at the terminal in that directory, I > did > > $./configure > $make > $make install > > After this last command I got the following: > > Making install in config [...] > "/usr/local/share/gnuplot/4.4/js" || .././install-sh -c -d "/ > usr/local/share/gnuplot/4.4/js" > mkdir: /usr/local/share/gnuplot: Permission denied make[2]: *** > [install-jsDATA] Error 1 make[1]: *** [install-am] Error 2 > make: *** [install-recursive] Error 1 > > Now, when I type gnuplot at the terminal I see that my version is still > the old one, 4.2.5. How do I update to the new version? "Permission denied" and "Error" mean the install failed, in this case due to lack of file or directory write permission. You will need to run make install as superuser. For example, sudo make install or su -c 'make install' or login as root, make install, and logout, via su - make install ^D -- jiw
Back to comp.graphics.apps.gnuplot | Previous | Next | Find similar
Re: updating gnuplot James Waldby <not@valid.invalid> - 2011-03-29 15:00 +0000
csiph-web