mirror of
https://github.com/kvcache-ai/ktransformers.git
synced 2025-09-08 13:39:48 +00:00
10 lines
No EOL
364 B
Markdown
10 lines
No EOL
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 |