It might be happening that even after putting numpy as requirement you get ModuleNotFoundError or so.
This is happening because the python packages are being installed via requirements.txt in global python, while run.sh is activating base conda environment. As a fix you need to do either of these:
- You can just comment the
source activate basein run.sh to stop using Conda’s python but use container/global instead - Use
environment.ymlto install numpy with conda.