I have been trying to install SUAVE for using it on my google colab notebook. I am able to install it, but when I try to import something from SUAVE.Core or SUAVE.Components, it says that the module is not found. The following is my code for installation.
%cd SUAVE/trunk/
!ls /content/SUAVE/SUAVE
!pip list
!pip install -r /content/SUAVE/requirements.txt
!python3 setup.py install
import sys
sys.path.append('/content/SUAVE')
import SUAVE
from SUAVE.Core import Units
from SUAVE.Components import Wings, Fuselages, Propulsors
I wonder if this is a common error. Please let me know if you know of a possible reason
for why this is happening and how it could be fixed. Thank you.
Kind regards,
Aryan