Skip to content

Commit

Permalink
Create troubleshooting.md (#154)
Browse files Browse the repository at this point in the history
* 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
rahul-trip authored Feb 14, 2024
1 parent 9c6eb7f commit 5044f76
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ pip install pebblo
```bash
pebblo
```
see [troubleshooting](docs/gh_pages/docs/troubleshooting.md) guide for troubleshooting info.

Pebblo daemon now listens to `localhost:8000` to accept Gen-AI application data snippets for inspection and reporting.

Expand Down
2 changes: 2 additions & 0 deletions docs/gh_pages/docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,5 @@ pebblo
```

Pebblo daemon now listens to `localhost:8000` to accept Gen-AI application data snippets for inspection and reporting.

see [troubeshooting](troubleshooting.md) if you face any issues.
1 change: 1 addition & 0 deletions docs/gh_pages/docs/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,4 @@ Pebblo has two components.
- [Pebblo Daemon](daemon.md)
- [Pebblo Safe DataLoader for Langchain](rag.md)
- [Reports](reports.md)
- [Troubleshooting](troubleshooting.md)
15 changes: 15 additions & 0 deletions docs/gh_pages/docs/troubleshooting.md
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
```
5 changes: 5 additions & 0 deletions docs/gh_pages/sidebars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ const sidebars: SidebarsConfig = {
id: "reports", // document ID
label: "Reports", // sidebar label
},
{
type: "doc",
id: "troubleshooting", // document ID
label: "Troubleshooting guide", // sidebar label
},
],
};

Expand Down

0 comments on commit 5044f76

Please sign in to comment.