Quote:
Originally Posted by samirahmed007
Please suggest
|
Either configure Sigil's Plugin manager to use an external Python interpreter with the BeautifulSoup module installed, or convince the plugin author to modify the plugin to use Sigil's own sigil_bs4 module if it's present (sigil_bs4 has been available to Sigil plugins since v0.8.900).
The easiest "fix" would be to change line 4 of plugin.py from:
Code:
from bs4 import BeautifulSoup
to:
Code:
try:
from sigil_bs4 import BeautifulSoup
except:
from bs4 import BeautifulSoup