Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
add an issue and solution into faq
Signed-off-by: chensuyue <[email protected]>
  • Loading branch information
chensuyue committed Jul 29, 2024
commit ca9c13d4401fec64c3fb440219b15dae7d52a765
9 changes: 9 additions & 0 deletions docs/source/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,12 @@ ImportError: libGL.so.1: cannot open shared object file: No such file or directo
#### Issue 4:
Conda package *neural-compressor-full* (this binary is only available from v1.13 to v2.1.1) dependency conflict may pending on conda installation for a long time.
**Solution:** run *conda install sqlalchemy=1.4.27 alembic=1.7.7 -c conda-forge* before install *neural-compressor-full*.
#### Issue 5:
If you run 3X torch extension API inside a docker container, then you may encounter the following error:
```shell
ValueError: No threading layer could be loaded.
HINT:
Intel TBB is required, try:
$ conda/pip install tbb
```
**Solution:** It's actually already installed by `requirements_pt.txt`, so just need to set up with `export LD_LIBRARY_PATH=/usr/local/lib/:$LD_LIBRARY_PATH`.