Compiled with CX_FREEZE, Beautiful Soup program wont run in Console
问题 This is the error I am getting when I run the EXE file of the program. The program runs fine in Pycharm but generates such error in console. bs4.FeatureNotFound: Couldn't find a Tree Builder with features you requested. Do you need to install a parser library? import sys from cx_Freeze import setup, Executable build_exe_options = {"packages": ["bs4, urllib, requests"], "excludes": [""]} base = None setup( name = "Weather", version = "0.9.0", options = {"program": build_exe_options},