skip to Main Content

I need an help with AWS and Django.
I created AWS EC2 instance and installed django using pip install django.
But when I try to install chromadb, it freezes on the stage of installing hnswlib.
What is the reason?

This is my second time to deploy on AWS EC2. But at the first time, my client created instance and I only used it. And there was no issue.

But this time, I created instance and tried. I felt the speed is very slower than before. Are there any options of the speed of instance?

2

Answers


  1. I had the same issue as my pip version on EC2 instance was outdated. This is what worked for me:

    pip install --upgrade pip
    pip install chromadb
    

    It will take some time to build hnswlib wait for it to complete.

    Login or Signup to reply.
  2. having the same issue. Upgrading pip does not work for me.

    It hangs when building wheel for hnswlib

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search