-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
bugSomething isn't workingSomething isn't working
Description
if __name__ == "__main__":
print("Getting MATLAB version... Please wait.")
matlab_version = get_matlab_version()
major_version = re.search(r"(\d+\.\d+)\.\d+\.\d+", matlab_version.decode("utf-8")).group(1)
if matlab_version:
print("MATLAB version found:", matlab_version)
print("Run the following command in the terminal to install the required version:")
major = int(major_version.split(".")[0])
minor = int(major_version.split(".")[1])
print(f"pip install matlabengine>={major}.{minor}.0,<{major+1}.0.0")
It should be '<{major}.{minor+1}.0"
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working