AWS EB PyYAML fix

note, Sep 18, 2023 on Mitja Felicijan's blog

Recent update of my system completely borked EB CLI @@ -14,21 +14,18 @@ on my machine.

I tried installing it with pip install awsebcli --upgrade ╰─> [68 lines of output]

To fix this issue with PyYAML you must install PyYAML separately.

Do the following and try installing eb again after.

echo 'Cython < 3.0' > /tmp/constraint.txt
 PIP_CONSTRAINT=/tmp/constraint.txt pip install 'PyYAML==5.4.1'
-