Path: csiph.com!x330-a1.tempe.blueboxinc.net!aioe.org!eternal-september.org!feeder.eternal-september.org!.POSTED!not-for-mail From: James Waldby Newsgroups: comp.graphics.apps.gnuplot Subject: Re: updating gnuplot Date: Tue, 29 Mar 2011 15:00:50 +0000 (UTC) Organization: A noiseless patient Spider Lines: 41 Message-ID: References: <8304c8a7-b732-4fad-a90b-c5ed5aac226c@a17g2000yqn.googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Injection-Date: Tue, 29 Mar 2011 15:00:50 +0000 (UTC) Injection-Info: mx01.eternal-september.org; posting-host="QpLFULTyicz5UoDNG+JV0w"; logging-data="16560"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+0PDO709ihpceS8u/I6ICS" User-Agent: Pan/0.133 (House of Butterflies) Cancel-Lock: sha1:75L0Lcl4xXrN90dR14ttwwghjeE= Xref: x330-a1.tempe.blueboxinc.net comp.graphics.apps.gnuplot:191 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