0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

MacでYolo11をインストールした際のログ

Last updated at Posted at 2025-06-21

個人用備忘録です。

% pip install --upgrade pip
% python -m venv myenv
% . myenv/bin/activate
(myenv) % cd myenv 
(myenv) myenv % pip install ultralytics
(myenv) myenv % pip uninstall numpy 
(myenv) myenv % pip install "numpy<2.0"
(myenv) myenv % curl -O https://github.com/ultralytics/assets/releases/download/v8.3.0/yolo11n.pt
(myenv) myenv % yolo predict model=yolo11n.pt source='https://ultralytics.com/images/bus.jpg'
  :
(myenv) myenv % deactivate

./runs/detect/predict/bus.jpgが生成されていれば成功です。
bus.jpg

トラブルシューティング

  • モデル(yolo11n.pt)はダウンロードできているか?
  • ソース画像はあるか?
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?