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?

WindowsでlabelImgが起動しない場合の対処法

Posted at

■実行環境

Windows11

■経緯

3ヶ月ぶりにlabelImgでアノテーションを行なおうとしたが、起動せず。3か月前はコマンドプロンプトでlabelimgコマンドを打てば起動できたはずだが、今回は下図のようなエラーとなり、起動しなかった。

  File "C:\Python312\Lib\site-packages\labelImg\labelImg.py", line 5, in <module>
    import distutils.spawn
ModuleNotFoundError: No module named 'distutils'

要はdistutilsがないことによるエラーだった。

■原因と解決方法

原因はPython3.12以降、distutilsが廃止されたことである。
setuptoolsをインストールすればdistutilsがインポート可能となる。
setuptoolsをインストールには下記のコマンドを実行。

pip install setuptools

あとは、labelImgを起動するには下記のコマンドを実行するのみ。

labelImg

無事にlabelImgが起動できました。
image.png

■参考記事

distutilsに関連するエラーを検索したところ、下記の記事を拝見し、解決できました。有り難うございました🙏
@pitao【inshellisense】ModuleNotFoundError: No module named 'distutils' の対処法

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?