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
The version of python used by pip does not correpond to the default python version on the system.
This results in an unexpected behavior, when users install packages with pip3, to see that these packages are not available for import with python3.
For example
docker run --rm -it --name python databricksruntime/python:11.3-LTS bash -c "which pip && pip --version && which pip3 && pip3 --version"
/usr/local/bin/pip
pip 21.2.4 from /usr/local/lib/python3.9/dist-packages/pip (python 3.9)
/usr/local/bin/pip3
pip 21.2.4 from /usr/local/lib/python3.9/dist-packages/pip (python 3.9)
I see databricksruntime/python:13.3-LTS does not have this problem, but I've not verified whether other types of images containing pip also have this issue.
The text was updated successfully, but these errors were encountered:
The version of python used by pip does not correpond to the default python version on the system.
This results in an unexpected behavior, when users install packages with
pip3
, to see that these packages are not available for import withpython3
.For example
vs
or
vs
I see
databricksruntime/python:13.3-LTS
does not have this problem, but I've not verified whether other types of images containing pip also have this issue.The text was updated successfully, but these errors were encountered: