使用python multithreading.Pool 做多线程,遭遇bug3770,如何解?
Python版本:2.7.3
系统版本:centos release 4.3
出错语句:pool = Pool(4)
错误信息:ImportError: This platform lacks a functioning sem_open implementation, therefore, the required synchronization primitives needed will not function, see issue 3770
简单来说是python不支持操作系统中关于共享信号量的设置。看了些别人的帖子,也看了python官网对这个bug的解释,但是都解决不了现在的问题。
操作系统改不了,有什么方法能绕过这个问题呀,求明白人支招~~~
迷茫2017-04-17 14:29:09
附上標準答案:
原因:沒有掛載/dev/shm;python安裝時需要寫入東西,才能開啟sem_open
解決方法:(需要root權限;以下命令root帳號執行)
修改/etc/fstab 增加:tmpfs /dev/shm tmpfs defaults 0 0
mount /dev/shm
chmod 777 /dev/shm
重裝python (必須重裝,沒辦法,安裝時檢查該設備是否存在,存在則可以使用sem_open)