I am trying to plot the datafile but getting this error [duplicate]
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
This question already has an answer here:
Unable to lock the administration directory (/var/lib/dpkg/) is another process using it?
21 answers
~/project$ plot 'dis_xsq_out.dat' u 1:2:3
Command 'plot' not found, but can be installed with:
sudo apt install plotutils
gnuplot
marked as duplicate by karel, Charles Green, Fabby, Pilot6, Warren Hill Feb 13 at 10:02
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
This question already has an answer here:
Unable to lock the administration directory (/var/lib/dpkg/) is another process using it?
21 answers
~/project$ plot 'dis_xsq_out.dat' u 1:2:3
Command 'plot' not found, but can be installed with:
sudo apt install plotutils
gnuplot
marked as duplicate by karel, Charles Green, Fabby, Pilot6, Warren Hill Feb 13 at 10:02
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
2
Did you installplot
.. orplotutils
as described ?
– Soren A
Feb 12 at 11:47
$ sudo apt install -o Acquire::http::proxy=false plotutils E: Could not get lock /var/lib/dpkg/lock-frontend - open (11: Resource temporarily unavailable) E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it?shwoing error while installing plot or plotutils
– ASHWINI GORE
Feb 12 at 12:02
add a comment |
This question already has an answer here:
Unable to lock the administration directory (/var/lib/dpkg/) is another process using it?
21 answers
~/project$ plot 'dis_xsq_out.dat' u 1:2:3
Command 'plot' not found, but can be installed with:
sudo apt install plotutils
gnuplot
This question already has an answer here:
Unable to lock the administration directory (/var/lib/dpkg/) is another process using it?
21 answers
~/project$ plot 'dis_xsq_out.dat' u 1:2:3
Command 'plot' not found, but can be installed with:
sudo apt install plotutils
This question already has an answer here:
Unable to lock the administration directory (/var/lib/dpkg/) is another process using it?
21 answers
gnuplot
gnuplot
edited Feb 12 at 11:50
Byte Commander
66.5k27181310
66.5k27181310
asked Feb 12 at 11:46
ASHWINI GOREASHWINI GORE
6
6
marked as duplicate by karel, Charles Green, Fabby, Pilot6, Warren Hill Feb 13 at 10:02
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
marked as duplicate by karel, Charles Green, Fabby, Pilot6, Warren Hill Feb 13 at 10:02
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
2
Did you installplot
.. orplotutils
as described ?
– Soren A
Feb 12 at 11:47
$ sudo apt install -o Acquire::http::proxy=false plotutils E: Could not get lock /var/lib/dpkg/lock-frontend - open (11: Resource temporarily unavailable) E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it?shwoing error while installing plot or plotutils
– ASHWINI GORE
Feb 12 at 12:02
add a comment |
2
Did you installplot
.. orplotutils
as described ?
– Soren A
Feb 12 at 11:47
$ sudo apt install -o Acquire::http::proxy=false plotutils E: Could not get lock /var/lib/dpkg/lock-frontend - open (11: Resource temporarily unavailable) E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it?shwoing error while installing plot or plotutils
– ASHWINI GORE
Feb 12 at 12:02
2
2
Did you install
plot
.. or plotutils
as described ?– Soren A
Feb 12 at 11:47
Did you install
plot
.. or plotutils
as described ?– Soren A
Feb 12 at 11:47
$ sudo apt install -o Acquire::http::proxy=false plotutils E: Could not get lock /var/lib/dpkg/lock-frontend - open (11: Resource temporarily unavailable) E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it?shwoing error while installing plot or plotutils
– ASHWINI GORE
Feb 12 at 12:02
$ sudo apt install -o Acquire::http::proxy=false plotutils E: Could not get lock /var/lib/dpkg/lock-frontend - open (11: Resource temporarily unavailable) E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it?shwoing error while installing plot or plotutils
– ASHWINI GORE
Feb 12 at 12:02
add a comment |
1 Answer
1
active
oldest
votes
You appear to be trying to run a Gnuplot plot
command directly from the terminal shell. Instead, you need to run it from Gnuplot's own interactive shell:
$ gnuplot
G N U P L O T
Version 5.2 patchlevel 2 last modified 2017-11-01
Copyright (C) 1986-1993, 1998, 2004, 2007-2017
Thomas Williams, Colin Kelley and many others
gnuplot home: http://www.gnuplot.info
faq, bugs, etc: type "help FAQ"
immediate help: type "help" (plot window: hit 'h')
Terminal type is now 'wxt'
gnuplot>
gnuplot> plot 'dis_xsq_out.dat' u 1:2:3
Alternatively, you can run it as a shell one-liner:
gnuplot -p -e 'plot "dis_xsq_out.dat" u 1:2:3'
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You appear to be trying to run a Gnuplot plot
command directly from the terminal shell. Instead, you need to run it from Gnuplot's own interactive shell:
$ gnuplot
G N U P L O T
Version 5.2 patchlevel 2 last modified 2017-11-01
Copyright (C) 1986-1993, 1998, 2004, 2007-2017
Thomas Williams, Colin Kelley and many others
gnuplot home: http://www.gnuplot.info
faq, bugs, etc: type "help FAQ"
immediate help: type "help" (plot window: hit 'h')
Terminal type is now 'wxt'
gnuplot>
gnuplot> plot 'dis_xsq_out.dat' u 1:2:3
Alternatively, you can run it as a shell one-liner:
gnuplot -p -e 'plot "dis_xsq_out.dat" u 1:2:3'
add a comment |
You appear to be trying to run a Gnuplot plot
command directly from the terminal shell. Instead, you need to run it from Gnuplot's own interactive shell:
$ gnuplot
G N U P L O T
Version 5.2 patchlevel 2 last modified 2017-11-01
Copyright (C) 1986-1993, 1998, 2004, 2007-2017
Thomas Williams, Colin Kelley and many others
gnuplot home: http://www.gnuplot.info
faq, bugs, etc: type "help FAQ"
immediate help: type "help" (plot window: hit 'h')
Terminal type is now 'wxt'
gnuplot>
gnuplot> plot 'dis_xsq_out.dat' u 1:2:3
Alternatively, you can run it as a shell one-liner:
gnuplot -p -e 'plot "dis_xsq_out.dat" u 1:2:3'
add a comment |
You appear to be trying to run a Gnuplot plot
command directly from the terminal shell. Instead, you need to run it from Gnuplot's own interactive shell:
$ gnuplot
G N U P L O T
Version 5.2 patchlevel 2 last modified 2017-11-01
Copyright (C) 1986-1993, 1998, 2004, 2007-2017
Thomas Williams, Colin Kelley and many others
gnuplot home: http://www.gnuplot.info
faq, bugs, etc: type "help FAQ"
immediate help: type "help" (plot window: hit 'h')
Terminal type is now 'wxt'
gnuplot>
gnuplot> plot 'dis_xsq_out.dat' u 1:2:3
Alternatively, you can run it as a shell one-liner:
gnuplot -p -e 'plot "dis_xsq_out.dat" u 1:2:3'
You appear to be trying to run a Gnuplot plot
command directly from the terminal shell. Instead, you need to run it from Gnuplot's own interactive shell:
$ gnuplot
G N U P L O T
Version 5.2 patchlevel 2 last modified 2017-11-01
Copyright (C) 1986-1993, 1998, 2004, 2007-2017
Thomas Williams, Colin Kelley and many others
gnuplot home: http://www.gnuplot.info
faq, bugs, etc: type "help FAQ"
immediate help: type "help" (plot window: hit 'h')
Terminal type is now 'wxt'
gnuplot>
gnuplot> plot 'dis_xsq_out.dat' u 1:2:3
Alternatively, you can run it as a shell one-liner:
gnuplot -p -e 'plot "dis_xsq_out.dat" u 1:2:3'
answered Feb 12 at 13:23
steeldriversteeldriver
70.7k11115187
70.7k11115187
add a comment |
add a comment |
2
Did you install
plot
.. orplotutils
as described ?– Soren A
Feb 12 at 11:47
$ sudo apt install -o Acquire::http::proxy=false plotutils E: Could not get lock /var/lib/dpkg/lock-frontend - open (11: Resource temporarily unavailable) E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it?shwoing error while installing plot or plotutils
– ASHWINI GORE
Feb 12 at 12:02