Suraez commented on issue #5331:
URL: https://github.com/apache/openwhisk/issues/5331#issuecomment-2214997378
I did the followings:
1. Removed the directories inside the /var/tmp/wskconf
2. removed all the docker containers, images, networks and volumes using the
followings:
```
docker stop $(docker ps -aq) && docker rm $(docker ps -aq)
docker kill $(docker ps -q)
docker image rm $(docker image ls -aq)
docker volume rm $(docker volume ls -q)
docker network rm $(docker network ls -q)
```
`docker system prune -a --volumes -f`
3. Then cleaned the OpenWhisk Deployment as suggested
[here](https://github.com/apache/openwhisk/blob/master/ansible/README.md) using
```
ansible-playbook -i environments/$ENVIRONMENT openwhisk.yml -e mode=clean
ansible-playbook -i environments/$ENVIRONMENT controller.yml -e
mode=clean
```
But still no luck. I think the problem is I have two python versions
installed python 3.10.12 and python 3.9.0.I have configured this project to use
python 3.9.0. But there are some commands in the setup script that are still
using Python 3.10.12
I spawn up a cloud VM having Ubuntu 20.04 LTS with Python 3.8.0 (not Python
3.10) and when i ran the scripts inside this VM, they ran to completion and I
didn't face any issue. So it seems like Python version is the main cause.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]