Hi there,
I am trying to deploy project on AWS EBS using CircleCI. It was deploying till tomorrow. But today CircleCI is throwing an error in “Installing deployment dependencies” Step. I am mentioning error below.
Error:
pyrsistent requires Python ‘>=3.5’ but the running Python is 2.7.13
Exited with code exit status 1
CircleCI received exit code 1
I am mentioning here config.yml Installing dependencies step below
Install software required to run EB deployer
- run:
name: Installing deployment dependencies
working_directory: ~/repo
command: |
sudo apt-get -y -qq update
sudo apt-get install python-pip python-dev build-essential
sudo pip install "urllib3<1.23,>=1.21.1" awsebcli --upgrade
sudo pip install awscli
Please help me on this.
Thank you!