-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No module named doit error when building #3721
Comments
You will need to install doit manually, you should be able to install everything you need by running
I just checked and yes apparently the requirements section for build did not get updated with the latest changes. |
Installing # Install/reinstall the virtual environment only if it either doesn't exist or
# the requirements have changed since its creation.
if [ "${REQ_TSTAMP}" -gt "${WIT_TSTAMP}" ]
then
"${PYTHON_SYS}" -m venv --clear "${BUILDENV}"
"${BUILDENV}/bin/pip" install -r "${REQUIREMENTS}"
touch "${WITNESS_FILE}"
fi I'd suggest recreating the venv from scratch ( |
@TeddyAndrieux It seems like the pip install -r is called from ./doit.sh @gdemonet I previously did not have After
The errors that stand out to me are
The git one and the python callback error log is something that concerns me the most. How can I resolve those errors? |
@jameskim0987 thanks for reporting back. The first errors mentioned are not problematic, and quite common when using This means the buildchain environment was correctly setup, and the rest is about using the buildchain itself. The last error explains it: your directory Hope this helps! |
WhenI run
./doit.sh
for building, I get the following errorInitially, I thought the problem was from python not pointing to python3 but the error persists. How can I fix this issue?
The text was updated successfully, but these errors were encountered: