You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the path where the code is fetched in Jenkins is too long, the pip command of the virtual environment fails, causing the build to fail. This is a well known issue. See:
The issues are relatively old and it doesn't seem like there is a solution for it. But there is a working around, which is to call the pip module like:
python -m pip
The text was updated successfully, but these errors were encountered:
Use `python -m pip` instead of `pip` during build to avoid breaking the build when the path in which the venv exists is too long.
Issue hadithhouse#404
Use `python -m pip` instead of `pip` during build to avoid breaking the build when the path in which the venv exists is too long.
Issue hadithhouse#404
If the path where the code is fetched in Jenkins is too long, the
pip
command of the virtual environment fails, causing the build to fail. This is a well known issue. See:The issues are relatively old and it doesn't seem like there is a solution for it. But there is a working around, which is to call the pip module like:
The text was updated successfully, but these errors were encountered: