DEV Community

Discussion on: How to upgrade CDK to latest version

Collapse
 
vumdao profile image
🚀 Vu Dao 🚀

Upgrade CDK version does not solve problems of outdated dependency services between the aws-cdk.core and other modules. Use following commands to solve the prolbem

pip list --local --outdated |grep cdk  | awk '{print $1}' > requirements.txt
pip install --upgrade -r requirements.txt
Enter fullscreen mode Exit fullscreen mode
Collapse
 
thoroc profile image
thoroc

How is using Pip going to solve npm related issues?