Hi-
I have built OpenVSP from source and installed the python package. My question is: why is it that when i call import vsp in cmd, I get something like below:
C:\Users\Lemoning>python
Python 3.9.18 (main, Sep 11 2023, 14:09:26) [MSC v.1916 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import SUAVE
>>> import openvsp
Invalid switch - "Users".
Invalid switch - "Users".
Invalid switch - "Users".
Invalid switch - "Users".
>>> import openvsp as vsp
>>> import vsp
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'vsp'
I've added the following to system variable path:
C:\Users\Lemoning\Desktop\OpenVSP\VSP_Build\src\python_api
C:\Users\Lemoning\Desktop\OpenVSP\OpenVSP-3.36.0-win64\OpenVSP-3.36.0-win64\python\openvsp\openvsp
Thanks!