Install PyWorkbench locally in Linux#

This page explains how to install PyWorkbench locally on a Linux platform.

Note

The following instructions assume that you have a local installation of Workbench and a valid license in your machine.

Download artifacts#

Start by downloading PyWorkbench wheel or source artifacts for Linux. Wheel artifacts are the preferred option for installing PyWorkbench.

Wheel artifacts for installing PyWorkbench:

Artifact

ansys_workbench_core-0.9.0-py3-none-any.whl

Size

0.02 MB

SHA-256

c40d66be9dba4fcc7f6bf613b1b6cf4969ef534166eb89ca4aabddb748455ba6

Source distribution for installing PyWorkbench:

Artifact

ansys_workbench_core-0.9.0.tar.gz

Size

0.01 MB

SHA-256

018a13396da7c5212d1cf1a46da919ea87bf45aa0f9cf013c8df75af068704aa

Install artifacts#

Install Linux artifacts by using the pip command:

python -m pip install ansys_workbench_core-0.9.0-py3-none-any.whl
python -m pip install ansys_workbench_core-0.9.0.tar.gz

Verify installation#

Verify a successful installation of PyWorkbench by running this code:

from ansys.workbench.core import launch_workbench


launch_workbench()