NatalieLes
NatalieLes

Reputation: 153

awsebcli: installed EB CLI with python 3.9 version via homebrew. Python 3.7 is used in project - potential problems?

I need to run AWS Elastic Beanstalk for deploying django (Django==3.1.5) project. So I've recently installed EB CLI (macOS) 3.19, which by default installed with Python 3.9.1 via Homebrew.

But I have python 3.7 installed and using it for my project's configuration:

python3 --version
Python 3.7.6

Would it cause any problem in further deploy? Should I delete it and install via pip?

Any help is appreciated. Thank you a lot!

Upvotes: 1

Views: 782

Answers (1)

Ridwan Rahman
Ridwan Rahman

Reputation: 33

shouldn't be a problem. However safest would be to keep the versions same.

Upvotes: 1

Related Questions