LoginSignup
0
0

More than 5 years have passed since last update.

OSError Failed to create queueが出る原因

Posted at

原因

指定したqueueを別のものが使っているのが原因.queueでbindeできるのは1つまで.

よくあるミスとしては,プログラムを終了するときにctr+cではなくctr+zで停止したとかとか.

対処法

今bindしているやつを解除してあげれば良い.これで解決.

もしbindしているものがctr+zで停止したプログラムならctr+cとかを使って終了させてやれば良い.停止したプログラムは「jobsコマンド」で確認できる.起動は「fg jobsで一番左にある番号」. 

>>>jobs
[1]+  Stopped                 test.py

>>>fg 1
test.py

その後,bindしているプログラム(今起動したやつ)を終了させてやればOK.

参考

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