Open ammarsaf opened 1 month ago
You must run the following lines to add the lib into the path:
export REPO_DIR=/path/to/the/repo/dir
cd $REPO_DIR
conda env config vars set PYTHONPATH=${PYTHONPATH}:${REPO_DIR}
conda env config vars set PROJECT_DIR=${REPO_DIR}
I have run the requirements.txt file, and try to execute the code using your CLI.
But it showed this error
import lib ModuleNotFoundError: No module named 'lib'
I check the source code, there is line of
import lib
What does this lib-library is? Is it your internal library, or dependencies that I need to install?
Update: I found that you should import it from
util.py
. The import should befrom lib.util import *