Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
This follows the earlier post: https://finaiml.com/running-code-on-a-server-with-tmux/
This tutorial explains how to configure Julia and its packages to run in a headless environment, ideal for use in tmux
or remote servers without graphical displays.
DISPLAY
VariableIn a tmux
session, ensure that the DISPLAY
environment variable is unset to prevent Julia from attempting to connect to a graphical display.
In your Julia session, run:
ENV["DISPLAY"] = nothing
Plots.jl
)Configure GR
to use offscreen rendering:
using GR
ENV["GKS_WSTYPE"] = "100" # Offscreen rendering
If you are using PyPlot.jl
, set the Agg
backend for non-interactive rendering:
using PyPlot
ENV["MPLBACKEND"] = "Agg"
If you are using Plots.jl
, verify that it is using a non-interactive backend:
using Plots
backend()
The backend should not rely on GUI rendering.
GR.jl might cause Qt-related errors if required libraries are missing. Install the necessary libraries on your system:
sudo apt-get install libgl1-mesa-glx libglib2.0-0 libxcb-render0 libxcb-shape0 libxcb-xfixes0
Then, explicitly set the GR backend to inline mode in Julia:
using GR
GR.inline()
To make these changes permanent, add the settings to your Julia startup file. This ensures they are applied whenever Julia starts.
mkdir -p ~/.julia/config
startup.jl
file:nano ~/.julia/config/startup.jl
ENV["DISPLAY"] = nothing ENV["GKS_WSTYPE"] = "100" # GR offscreen rendering ENV["MPLBACKEND"] = "Agg" # PyPlot offscreen rendering
Restart your Julia session to apply the changes:
julia
Run your code in a tmux
session and ensure that it works without any display-related errors.
using GR plot(1:10, rand(10))
using PyPlot plot(1:10, rand(10)) savefig("output.png") # Save plot to a file
Both should render offscreen and not require a graphical display.
DISPLAY
variable:println(ENV["DISPLAY"]) # Should output `nothing`
sudo apt-get install libqt5gui5 libqt5core5a libqt5widgets5