Python: Problem with YOLOE

I am trying to get YOLOE working but I can’t get very far with it.

:slight_smile:

I use MacBook, and it does:

from ultralytics import YOLO

Ok.

But it hangs up on:

pip install –no-cache-dir “git+https://github.com/ultralytics/CLIP.git”

no module named ‘clip’

What am I doing wrong?

1 Like

Run this (copy-paste exactly):

pip install --no-cache-dir "git+https://github.com/ultralytics/CLIP.git"

  1. --no-cache-dir has two regular hyphens.
  2. The quotes are normal ", not “smart quotes”.
3 Likes

Hi @Bill293536 and welcome to the forum, glad to have you here.

Is there a specific specific tutorial that you’re trying to follow? It’s a little hard to diagnose this without any additional information about what steps you have already tried.

If you could provide any screenshots of the error message that you are getting as well as any code snippets that would make this clearer, we should be able to solve this together.

Thank you.

:slight_smile:

2 Likes

Next time, I will remember that.

:slight_smile:

2 Likes