mirror of
https://github.com/RYDE-WORK/ktransformers.git
synced 2026-01-24 23:43:20 +08:00
10 lines
364 B
Markdown
10 lines
364 B
Markdown
# FAQ
|
|
## Install
|
|
### 1 ImportError: /lib/x86_64-linux-gnu/libstdc++.so.6: version GLIBCXX_3.4.32' not found
|
|
```
|
|
in Ubuntu 22.04 installation need to add the:
|
|
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
|
|
sudo apt-get update
|
|
sudo apt-get install --only-upgrade libstdc++6
|
|
```
|
|
from-https://github.com/kvcache-ai/ktransformers/issues/117#issuecomment-2647542979 |