Results 5 comments of Will Wright

Same results for me -- I'm pulling the latest image in my docker-compose.yml which [should be 0.1.27](https://hub.docker.com/r/ollama/ollama/tags) ``` ollama: image: ollama/ollama:latest volumes: - ./ollama-data:/root/.ollama ports: - "11434:11434" restart: unless-stopped deploy:...

Ah, I had to delete the image and re-pull it to get the latest version. I thought `docker-compose up --build` would pull the latest image for some reason

regarding your second question, it looks like the logic for handling all types of stdin is tricky ([source](https://github.com/TheR1D/shell_gpt/blob/7678afe46f46fcbaa97b810942b1dfae71111212/sgpt/app.py#L163-L170))

[this is a python/os issue](https://stackoverflow.com/questions/75608323/how-do-i-solve-error-externally-managed-environment-every-time-i-use-pip-3), not a shell_gpt issue

check out ollama's docs for [setting up a server](https://github.com/ollama/ollama/blob/main/docs/faq.md#how-do-i-configure-ollama-server)