# Get GLMakie running with a Intel graphic card on Manjaro Linux

**URL:** https://discourse.julialang.org/t/get-glmakie-running-with-a-intel-graphic-card-on-manjaro-linux/52986
**Category:** Offtopic
**Tags:** makie
**Created:** [January 7, 2021, 1:14pm UTC](https://discourse.julialang.org/t/get-glmakie-running-with-a-intel-graphic-card-on-manjaro-linux/52986 "2021-01-07T13:14:28Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![scheidan](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/scheidan/32/9889_2.png) [@scheidan](https://discourse.julialang.org/u/scheidan)
#### Post date: [January 7, 2021, 1:14pm UTC](https://discourse.julialang.org/t/get-glmakie-running-with-a-intel-graphic-card-on-manjaro-linux/52986/1 "2021-01-07T13:14:28Z")

</div>

Hi all,

I wanted to try the new (really cool!) Makie release but I had trouble to get `GLMakie` to build on Manjaro Linux after an update:

```julia
┌ Error: Error building `GLMakie`: 
│ libGL error: MESA-LOADER: failed to open iris (search paths /usr/lib/dri)
│ libGL error: failed to load driver: iris
│ libGL error: MESA-LOADER: failed to open iris (search paths /usr/lib/dri)
│ libGL error: failed to load driver: iris
│ libGL error: MESA-LOADER: failed to open swrast (search paths /usr/lib/dri)
│ libGL error: failed to load driver: swrast
│ Initialization error of GLFW

```

I finally found a solution here [here](https://bbs.archlinux.org/viewtopic.php?pid=1905393#p1905393).  
The solution is to use the old driver by setting an environmental variable first:

```nohighlight
ENV["MESA_LOADER_DRIVER_OVERRIDE"] = "i965"

using AbstractPlotting
import GLMakie

scatter(rand(100))

```

(I posted this in offtopics as it seems unrelated to Julia)
