-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create troubleshooting.md * Update introduction.md to add troubleshooting link. * Update installation.md Adding troubleshooting doc link * Update troubleshooting.md * Update README.md * Update README.md * Update sidebars.ts Added Troubleshooting guide to sidebar
- Loading branch information
1 parent
9c6eb7f
commit 5044f76
Showing
5 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Troubleshooting Pebblo | ||
|
||
## Issued found in conda virtual env. | ||
### 1. OSError: cannot load library 'pango-1.0-0' | ||
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 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters