Plotting a histogram in Julia

Please try:

ENV["GRDIR"]=""
] build GR
using GR
histogram(randn(10000))

If that works, you can restart Julia and switch to Plots:

using Plots
histogram(randn(10000))

For any reason, your installation is/was incomplete.

1 Like