How to avoid this alert?
WARNING: using Gaston.plot in module Main conflicts with an existing identifier.
WARNING: using Gaston.figure in module Main conflicts with an existing identifier.
(@v1.5) pkg>> st Gaston
Status `C:\Users\Hermesr\.julia\environments\v1.5\Project.toml`
[4b11ee91] Gaston v1.0.4
(@v1.5) pkg>test Gaston
Testing Gaston
Status `C:\Users\Hermesr\AppData\Local\Temp\jl_kgXfrx\Project.toml`
[35d6a980] ColorSchemes v3.12.0
[4b11ee91] Gaston v1.0.4
[8bb1440f] DelimitedFiles
[9a3f8284] Random
[8dfed614] Test
Status `C:\Users\Hermesr\AppData\Local\Temp\jl_kgXfrx\Manifest.toml`
[35d6a980] ColorSchemes v3.12.0
[3da002f7] ColorTypes v0.10.12
[5ae59095] Colors v0.12.8
[53c48c17] FixedPointNumbers v0.8.4
[4b11ee91] Gaston v1.0.4
[189a3867] Reexport v1.0.0
[90137ffa] StaticArrays v1.1.1
[2a0f44e3] Base64
[8bb1440f] DelimitedFiles
[8ba89e20] Distributed
[b77e0a4c] InteractiveUtils
[8f399da3] Libdl
[37e2e46d] LinearAlgebra
[56ddb016] Logging
[d6f4376e] Markdown
[a63ad114] Mmap
[9a3f8284] Random
[9e88b42a] Serialization
[6462fe0b] Sockets
[2f01184e] SparseArrays
[10745b16] Statistics
[8dfed614] Test
Test Summary: | Pass Total
Figure and set commands | 14 14
Test Summary: | Pass Broken Total
2-D plots | 47 3 50
Test Summary: | Pass Total
Histograms | 2 2
Test Summary: | Pass Total
Images | 3 3
Test Summary: | Pass Total
3-D plots | 12 12
Test Summary: | Pass Total
Multiplot | 1 1
Test Summary: | Pass Total
Saving plots | 6 6
Test Summary: | Pass Total
Tests that should fail | 14 14
Testing Gaston tests passed
julia> using Gaston
WARNING: using Gaston.plot in module Main conflicts with an existing identifier.
WARNING: using Gaston.figure in module Main conflicts with an existing identifier.
G N U P L O T
Version 5.4 patchlevel 1 last modified 2020-12-01
As far as I know, those warnings indicate that you have previously loaded another plotting package, for example with using Plots. If Gaston is the only loaded plotting package, those warnings should not appear.
Would you mind opening an issue? Please let me know your OS, gnuplot version, and julia version. I can’t reproduce the problem in my own Linux installation.
If you’re on Windows, please run set(term="qt") before plotting. It seems that some versions of gnuplot have trouble with the default windows terminal (see https://github.com/mbaz/Gaston.jl/issues/161).