I have installed a python library but dreampie won't import it -
i have installed python library in python3.3. when run interpreter in dreampie, can't find newly-installed library, resulting in error like:
>>> bs4 import beautifulsoup traceback (most recent call last): file "<pyshell#4>", line 1, in <module> bs4 import beautifulsoup importerror: no module named 'bs4'
this dreampie 1.2.1 bug. work around it, under edit | preferences | shell, add following line automatically-run code in black box:
import site site.addsitedir(r'c:\python33\lib\site-packages')
Comments
Post a Comment