haleight-dc
New Contributor III

Hi! I just figured this out myself. I'm not sure why this is suddenly occurring, since igraph has always loaded fine for me in databricks but didn't this week. I found that the following solution worked.

In your notebook before installing your R libraries, make a %sh chunk (just type that at the top) so the code looks like this:
```

%sh
sudo apt-get update
sudo apt-get -y install libglpk-dev
```
 
This should work. I found the solution here: https://github.com/igraph/rigraph/issues/490#issuecomment-966890059 

View solution in original post