Page MenuHome

Wombura Kimacha Nanai (kimacha)
User

Projects

User does not belong to any projects.

User Details

User Since
Feb 11 2020, 8:37 AM (156 w, 3 d)

Recent Activity

Feb 11 2020

Wombura Kimacha Nanai (kimacha) added a comment to T68243: Python misconfiguration in Mac build.

Found a solution:
Locate the installed sqlite3-version.
In my case "/opt/local/lib/libsqlite3.0.dylib"
Open the terminal and create the path:

sudo mkdir -p /Users/azo/Code/blender/blender_build/build-libs/Release/sqlite/lib/
sudo chmod -R 777 /Users/azo/
cd /Users/azo/Code/blender/blender_build/build-libs/Release/sqlite/lib/

Create a ln to your sqlite3:

ln -s /opt/local/lib/libsqlite3.0.dylib libsqlite3.0.dylib

Hello @Juergen Furrer (juergen.furrer) , thank you for the hack provided though I still can't figure out your path for the created directory provided. Is lib folder the same as the one located in contents folder of Blender application?

In my system I found lots of libsqlite3.0.dylib (I used the one from mac-port)

Update your locate-db:

sudo /usr/libexec/locate.updatedb

then search for sqlite:

locate libsqlite3.0.dylib

It will show you all locations where sqlite is used:
Filezilla
XCODE
Mono.framework
MacGPG
/opt/local/lib/libsqlite3.0.dylib
/usr/lib/libsqlite3.0.dylib

Feb 11 2020, 9:12 AM · Platform: macOS, Add-ons (BF-Blender), BF Blender
Wombura Kimacha Nanai (kimacha) added a comment to T68243: Python misconfiguration in Mac build.

Found a solution:
Locate the installed sqlite3-version.
In my case "/opt/local/lib/libsqlite3.0.dylib"
Open the terminal and create the path:

sudo mkdir -p /Users/azo/Code/blender/blender_build/build-libs/Release/sqlite/lib/
sudo chmod -R 777 /Users/azo/
cd /Users/azo/Code/blender/blender_build/build-libs/Release/sqlite/lib/

Create a ln to your sqlite3:

ln -s /opt/local/lib/libsqlite3.0.dylib libsqlite3.0.dylib
Feb 11 2020, 8:44 AM · Platform: macOS, Add-ons (BF-Blender), BF Blender