-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create troubleshooting.md #154
Changes from all commits
de9239e
bf1e9ae
dc758bd
bcb3a79
8a8cf2f
2a52ff1
5bad51a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Troubleshooting Pebblo | ||
|
||
## Issued found in conda virtual env. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit pick - |
||
### 1. OSError: cannot load library 'pango-1.0-0' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is common troubleshooting guide for |
||
Install pango package in conda env | ||
|
||
`conda install -c anaconda pango` | ||
|
||
### 2. OSError: cannot load library 'gobject-2.0-0': gobject-2.0-0: cannot open shared object file | ||
Install libpango binaries | ||
|
||
```bash | ||
sudo apt-get update | ||
sudo apt-get install libpango1.0-0 | ||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IMO, it should be only
Troubleshooting
orTroubleshooting Guide
.