Skip to content

Commit 8754d82

Browse files
committed
doc: update doc
1 parent b3da8ed commit 8754d82

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

docs/FAQ.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
## Questions on Environment Setup
2+
3+
**Question**: When running the program, an error occurs during the import statement "from fused_ssim import fused_ssim". The error message is related to libstdcxx.
4+
5+
**Analysis**: This issue occurs because the stdcxx-related dynamic libraries in the Conda environment are outdated. The fused_ssim module was compiled using a higher version of GCC from the local environment rather than the lower version of GCC in the Conda environment.
6+
7+
**Solution**: You can specify the "conda-forge" channel when creating a new Conda environment to ensure downloading the latest GCC toolchain.
8+
9+
```bash
10+
conda create --name gscodec_studio -c conda-forge python=3.10
11+
```
12+
---

0 commit comments

Comments
 (0)