SolidLink95 / Models-Resource-Blender-Importer

Importing 3D models from https://www.models-resource.com/ in Blender UI
GNU General Public License v3.0
6 stars 1 forks source link

No module named `bs4` #2

Closed vincerubinetti closed 9 months ago

vincerubinetti commented 9 months ago

Getting this error when trying to enable the addon, after installing the addon per the readme with Blender 2.93 (last supported version per readme), portable, on Windows 10 64bit.

image

The readme says that BeautifulSoup is a "requirement", but does not say how to meet that requirement. Granted, I'm completely new to Blender, so I might be missing something. I've tried to install it via Blender's Python console and pip, but no luck.

vincerubinetti commented 9 months ago

Okay, had to add the addon folder (which contains the bs4 module) to the Blender Python path, like this, in the Blender Python command line:

import sys
sys.path.insert(0, "C:\\Users\\Vincent\\AppData\\Roaming\\Blender Foundation\\Blender\\2.93\\scripts\\addons\\Models_Resource_Importer")