symforce-org / symforce

Fast symbolic computation, code generation, and nonlinear optimization for robotics
https://symforce.org
Apache License 2.0
1.41k stars 145 forks source link

Replaced space character #401

Open Aterolite24 opened 1 week ago

Aterolite24 commented 1 week ago

Description

As a workaround for Issue #400, I modified the setup.py to replace spaces in the SOURCE_DIR path with %20, which allowed the build process to proceed:

SOURCE_DIR = str(SOURCE_DIR).replace(' ', '%20')

However, this is only a temporary fix, and the issue should ideally be resolved by properly escaping or quoting directory paths with spaces in the build scripts.