From b00b9014c231cb2589b82f97627bb066b23b6e5b Mon Sep 17 00:00:00 2001 From: gcalderone Date: Sun, 12 Apr 2020 17:17:17 +0200 Subject: [PATCH 1/2] Updated after #15 --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 84d319e..86bc21e 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,15 @@ Install with: ``` A working [gnuplot](http://gnuplot.sourceforge.net/) package must be installed on your platform. +You check th installed **Gnuplot.jl** version with: +```julia +]st Gnuplot +``` +If the displayed version is not v1.1.0 you are probably having a dependency conflict. In this case try forcing installation of the correct version with: +```julia +]add Gnuplot@1.1.0 +``` +and check which package is causing the conflict. Test package: ```julia @@ -24,7 +33,6 @@ using Gnuplot println(Gnuplot.gpversion()) test_terminal() ``` -The latest version of **Gnuplot.jl** is 1.1.0. ## Quick start From e846ba79749d0a9ef1a52e679a8678a819bf6dbd Mon Sep 17 00:00:00 2001 From: gcalderone Date: Sun, 12 Apr 2020 17:17:53 +0200 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 86bc21e..0f40505 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Install with: ``` A working [gnuplot](http://gnuplot.sourceforge.net/) package must be installed on your platform. -You check th installed **Gnuplot.jl** version with: +You check the installed **Gnuplot.jl** version with: ```julia ]st Gnuplot ```