Posts: 5
Threads: 3
Joined: Jan 2025
Hi
I am trying to run pulp-nn-mixed test and I am getting the following error:
Traceback (most recent call last):
File "pulp-sdk/tools/gapy/gapy", line 26, in <module>
from errors import FatalError, InputError
File "pulp-sdk/tools/gapy/errors.py", line 21, in <module>
import common
File "pulp-sdk/tools/gapy/common.py", line 34, in <module>
from tools.runner.runner import Runner
ModuleNotFoundError: No module named 'tools'
it seems the pulp-sdk repo is missing the tools file/package or maybe i did something wrong
thanks in advance
Posts: 4
Threads: 0
Joined: Dec 2024
I think you're encountering a ModuleNotFoundError, indicating that the tools module is missing in the pulp-sdk repository.
Posts: 2
Threads: 0
Joined: Nov 2024
It appears that the tools module is not included in the pulp-sdk repository, as evidenced by the ModuleNotFoundError you are seeing.
Posts: 1
Threads: 0
Joined: Mar 2026
(03-27-2025, 04:07 PM)yoss Wrote: Hi
I am trying to run pulp-nn-mixed test and I am getting the following error:
Traceback (most recent call last):
File "pulp-sdk/tools/gapy/gapy", line 26, in <module>
from errors import FatalError, InputError
File "pulp-sdk/tools/gapy/errors.py", line 21, in <module>
import common
File "pulp-sdk/tools/gapy/common.py", line 34, in <module>
from tools.runner.runner import Runner
ModuleNotFoundError: No module named 'tools'
it seems the pulp-sdk repo is missing the tools file/package or maybe i did something wrong
thanks in advance
Make sure you’ve cloned the full
repo and are running the script from the repo root, or try installing any missing dependencies.
Posts: 1
Threads: 0
Joined: May 2026
(03-27-2025, 04:07 PM)yoss Wrote: Hi
I am trying to run pulp-nn-mixed test and I am getting the following error:
sports games
Traceback (most recent call last):
File "pulp-sdk/tools/gapy/gapy", line 26, in <module>
from errors import FatalError, InputError
File "pulp-sdk/tools/gapy/errors.py", line 21, in <module>
import common
File "pulp-sdk/tools/gapy/common.py", line 34, in <module>
from tools.runner.runner import Runner
ModuleNotFoundError: No module named 'tools'
it seems the pulp-sdk repo is missing the tools file/package or maybe i did something wrong
thanks in advance
Hi,
This usually means the SDK environment is not loaded correctly.
Try these commands first:
Code:
git submodule update --init --recursive
cd pulp-sdk
source configs/pulp-open.sh
Then run the test again.
Also check if this file exists:
Code:
pulp-sdk/tools/runner/runner.py
If it is missing, your repo/submodules were not downloaded completely.
You can also test with:
Code:
python3 -c "from tools.runner.runner import Runner"
inside
.
Most PULP SDK versions also work better with Python 3.8 or 3.9.