Hi team, when I'm running the docker build command the docker build fails with the following two issues:
ln -s /usr/bin/pip3 /usr/bin/pip fails. This is because pip3 install --upgrade pip (line 13) already creates /usr/bin/pip, so the subsequent ln -s errors with "File exists".
Suggested Fix: use ln -sf to force overwrite.
python setup.py install fails to install pandas. Since the setup.py install uses easy_install, which pulls pandas 3.0.1. That version requires Python 3.9+ and uses pyproject.toml, so easy_install can't find a setup script.
Suggested Fix: replace python setup.py install with pip install ., which correctly resolves pandas to a Python 3.8-compatible version.
Hi team, when I'm running the docker build command the docker build fails with the following two issues:
ln -s /usr/bin/pip3 /usr/bin/pipfails. This is becausepip3 install --upgrade pip(line 13) already creates/usr/bin/pip, so the subsequentln -serrors with "File exists".Suggested Fix: use
ln -sfto force overwrite.python setup.py installfails to install pandas. Since thesetup.py installuseseasy_install, which pulls pandas 3.0.1. That version requires Python 3.9+ and usespyproject.toml, soeasy_installcan't find a setup script.Suggested Fix: replace
python setup.py installwithpip install ., which correctly resolves pandas to a Python 3.8-compatible version.