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

Popular posts from this blog

Change php variable from jquery value using ajax (same page) -

Pull out data related to my apps from Android Play Store and iOS App Store -

How can I fetch data from a web server in an android application? -