Hi, I am upgrading from prefect 0.14.5 to 1.4.1 do...
# prefect-community
h
Hi, I am upgrading from prefect 0.14.5 to 1.4.1 do i also need to upgrade my prefect agent ?
c
Hi Hamza - yes, you should upgrade your prefect agent, unless there is a specific reason you want to remain at 0.14.5
h
thanks
is there any documentation on how we can upgrade prefect agent ?
docker pull prefecthq/prefect:latest how to pull for 1.4.1??
is this the correct commad docker pull prefecthq/prefect:1.4.1-python3.8
c
This depends entirely on how/ where you run the agent
If it’s local, simple a
pip install -U prefect==1.4.1
If you are running in docker, then yes, pulling the correct docker image:
docker pull prefecthq/prefect:1.4.1-python3.8
h
got it thanls