I want to include space in path and have tried like below.
import MeCab
parser=MeCab.Tagger('-d /opt/test1 test2/dictionary')
parser=MeCab.Tagger('-d /opt/test1\ test2/dictionary')
parser=MeCab.Tagger('-d "/opt/test1 test2/dictionary"')
All three of them failed as RuntimeError.
Is any way to include space in path?