MagnumVD / RotoForge-AI

An implementation of SAM-HQ + some other stuff to make rotoscoping in blender fast af
Other
29 stars 1 forks source link

Unable to Install Dependencies on MacOS #12

Closed Awesomefied closed 3 months ago

Awesomefied commented 3 months ago

On MacOS if you try to install dependencies you get this error: Screenshot 2024-06-24 at 11 38 36 AM

This is because on line 48 in the install_dependencies.py file it references python.exe:

python_exe = os.path.join(sys.prefix, 'bin', 'python.exe')

To fix this on MacOS the code needs to be changed to this:

python_exe = os.path.join(sys.prefix, 'bin', 'python3.10')
MagnumVD commented 3 months ago

Oh, does the deps install actually work after that change?

MagnumVD commented 3 months ago

Context: Change was validated on dc, magically works now (hopefully)?

Added the change in, thanks!