-
Notifications
You must be signed in to change notification settings - Fork 58
Closed
Labels
bugIssue, problem or error in PyFluentIssue, problem or error in PyFluent
Description
🔍 Before submitting the issue
- I have searched among the existing issues
- I am using a Python virtual environment
🐞 Description of the bug
With the recent patch release the from_install method now throws an error, and behaves differently than the standard launch_fluent() entry-point.
📝 Steps to reproduce
Install any recent (patch) release, such as ansys-fluent-core==0.35.1, or 0.37.0.
import ansys.fluent.core as pyfluent
# Works:
session = pyfluent.launch_fluent(version="25.2")
# Throws an unexpected keyword argument:
session = pyfluent.PureMeshing.from_install(product_version="25.2")
session = pyfluent.Meshing.from_install(product_version="25.2")
session = pyfluent.Solver.from_install(product_version="25.2")Traceback:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File ".\pyfluent-certificates\Lib\site-packages\ansys\fluent\core\session_utilities.py", line 177, in from_install
launcher = StandaloneLauncher(**argvals)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
TypeError: StandaloneLauncher.__init__() got an unexpected keyword argument 'certificates_folder'
💻 Which operating system are you using?
Windows
📀 Which ANSYS version are you using?
25R2
🐍 Which Python version are you using?
3.12
📦 Installed packages
ansys-api-fluent==0.3.36
ansys-api-platform-instancemanagement==1.1.3
ansys-api-tools-filetransfer==0.1.2
ansys-fluent-core==0.37.0
ansys-platform-instancemanagement==1.1.2
ansys-tools-common==0.3.1
ansys-tools-filetransfer==0.2.0
ansys-tools-local-product-launcher==0.2.0
ansys-units==0.9.1
appdirs==1.4.4
certifi==2025.11.12
charset-normalizer==3.4.4
click==8.3.1
colorama==0.4.6
defusedxml==0.7.1
Deprecated==1.3.1
docker==7.1.0
googleapis-common-protos==1.72.0
grpcio==1.76.0
grpcio-health-checking==1.62.3
grpcio-status==1.62.3
idna==3.11
importlib_metadata==8.7.0
joblib==1.5.2
nltk==3.9.2
numpy==2.3.5
pandas==2.3.3
platformdirs==4.5.0
protobuf==4.25.8
pyansys-tools-report==0.9.0
python-dateutil==2.9.0.post0
pytz==2025.2
pywin32==311
PyYAML==6.0.3
regex==2025.11.3
requests==2.32.5
scooby==0.11.0
setuptools==80.9.0
six==1.17.0
tqdm==4.67.1
typing_extensions==4.15.0
tzdata==2025.2
urllib3==2.5.0
wheel==0.45.1
wrapt==2.0.1
zipp==3.23.0Metadata
Metadata
Assignees
Labels
bugIssue, problem or error in PyFluentIssue, problem or error in PyFluent