Discovery Version not available #1491
-
Dear developers, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
Hi @aglowinski-danfoss - thanks for opening this discussion. Let's try to figure it out. Can you share with us (from your failing environment):
from ansys.tools.path import get_available_ansys_installations, get_latest_ansys_installation
installs = get_available_ansys_installations()
print(installs)
latest = get_latest_ansys_installation()
print(latest)
print("24R2 is not available") if 242 not in installs else print("24R2 is available") |
Beta Was this translation helpful? Give feedback.
-
For summary purposes on future reads... After trying to determine information relative to:
We realized that the pip install --upgrade --force-reinstall ansys-tools-path If you agree with this resolution @aglowinski-danfoss please mark this response as an answer. |
Beta Was this translation helpful? Give feedback.
For summary purposes on future reads...
After trying to determine information relative to:
We realized that the
ansys-tools-path
version being used was too old (0.3.2) and did not have "knowledge" of the Ansys 24R2 release. A version upgrade ofan…