after installing the isacalc module I wrote the example code given in the read me.
then I get the error:
runfile('C:/Users/Black/Documents/1-Neff Aero/Python
Plots/isacalctest.py', wdir='C:/Users/Black/Documents/1-Neff Aero/Python
Plots')
Traceback (most recent call last):
File "C:\Users\Black\Documents\1-Neff Aero\Python Plots\isacalctest.py",
line 8, in <module>
import isacalc as isa
File "C:\ProgramData\Anaconda3\lib\site-packages\isacalc\__init__.py",
line 1, in <module>
from isacalc.main_executable import calculate_at_h, get_atmosphere
File "C:\ProgramData\Anaconda3\lib\site-
packages\isacalc\main_executable.py", line 1, in <module>
from src import Atmosphere
ModuleNotFoundError: No module named 'src'
Code I wrote:
import isacalc as isa
atmosphere = isa.get_atmosphere()
h = 11000.0
T,P,d,a,mu = isa.calculate_at_h(h,atmosphere)