launch#
- ansys.sherlock.core.launcher.launch(host='127.0.0.1', port=9090, single_project_path='', sherlock_command_args='', year=None, release_number=None)#
Launch Sherlock using the specified host and port for the gRPC connection.
Available Since: 2025R2
- Parameters:
- host: str, optional
IP address to start gRPC on. The default is
"127.0.0.1"
, which is the IP address for the local host.- port: int, optional
Port number for the connection.
- single_project_path
str
,optional
Path to the Sherlock project if invoking Sherlock in the single-project mode.
- sherlock_command_args
str
,optional
Additional command arguments for launching Sherlock.
- year: int, optional
4-digit year of the Sherlock release to launch. If not provided, the latest installed version of Sherlock will be launched.
- release_number: int, optional
Release number of Sherlock to launch. If not provided, the latest installed version of Sherlock will be launched.
- Returns:
- :
str
Path to the Sherlock installation directory.
- Return type:
Examples
>>> from ansys.sherlock.core import launcher >>> project = "C:\\Default Projects Directory\\ODB++ Tutorial" >>> ansys_install_path = launcher.launch( >>> port=9092, single_project_path=project, year=2024, release_number=2)