Skip to content
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

Merged
merged 7 commits into from
Feb 14, 2024
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Copy link
Collaborator

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 or Troubleshooting Guide.


## Issued found in conda virtual env.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit pick - Issued => Issues

### 1. OSError: cannot load library 'pango-1.0-0'
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is common troubleshooting guide for Installation, Development Environment and Pebblo Safe DataLoader for Langchain sections of this document. IMO, So there should be either some identifier to notify that this particular troubleshooting issue belongs to what section. This will be easy for end user.

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
```