Isaac
Isaac
Yes I have been struggling with the same thing. I changed %ARGS% to %ARGS_CPU% which I see appends "--render_pose 1" to the .exe command. Like you said, the instructions say...
As expected, this solved the issue ``` sudo apt-get install libfreeimage-dev ``` But I didn't see requirements anywhere and though the binaries included everything required.
It seems to work that way! With this snippet it seems to be working ```python def create_pwlf_from_coeffs(fit_breaks, beta, slopes): model = pwlf.PiecewiseLinFit(None, None, degree=2) model.fit_breaks = fit_breaks model.beta = beta...
I just got this same error but realized I was trying to build from `googletest/googletest/build` instead of `googletest/build`.
I'm having the same issue (Ubuntu 18.04) ```bash Traceback (most recent call last): File "/home/ijw/projects/N221-004/OpenVSP/src/python_api/packages/../test.py", line 4, in import openvsp as vsp File "/home/ijw/projects/N221-004/OpenVSP/src/python_api/packages/openvsp/openvsp/__init__.py", line 1, in from .vsp import...
In my case this issue was the result of trying to `pip install` in the source directory instead of the install directory: ```/home/usr/openvsp/repo/src/python_api/packages``` Instead the install location: ```/usr/local/python```
After some `ripgrep`ing I found the Jupyter notebook that [Externally Computed Aero](https://openmdao.github.io/Aviary/user_guide/external_aero.html) is based off of. This was great because apparently page was hiding the code I needed to see....
Ok great this is helping clear things up. I have a few follow-ups but I will post them in discussions as suggested. Thank you!
That's exactly the page I followed. Again it just states `pip install om-aviary`, which is not sufficient to run the examples exactly as they are.
I'm not on Linux.