While installing via dockerfile, at line RUN python3 -m pip install -r requirements.txt there was error, "No module named 'setuptools_rust'" and the installation stopped.
I addedRUN python3 -m pip install --upgrade pip and it worked. I think if the pip libraries were too old, you can't install.
While installing via dockerfile, at line
RUN python3 -m pip install -r requirements.txtthere was error, "No module named 'setuptools_rust'" and the installation stopped.I added
RUN python3 -m pip install --upgrade pipand it worked. I think if the pip libraries were too old, you can't install.