-
Hello , I would like to remotely connect to another PC where Ansys is installed and run it from a PC that does not have Ansys installed.
Thank you :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @ufsaa2022 I am not sure if you are using PyMAPDL (bit Anyways, if you refer to PyMAPDL, PyMAPDL cannot start an MAPDL instance in a remote PC. You need to launch it manually in that PC, and then connect to it from PyMAPDL. For instance in the remote PC with ip XXX.YY.ZZ.WW issue: /ansys_inc/v232/ansys/bin/ansys232 -grpc Then from your laptop (without Ansys, but in the same network as the other one) you launch python and type: >>> from ansys.mapdl.core import launch_mapdl
>>> mapdl = launch_mapdl(ip="XXX.YY.ZZ.WW") I hope it helps. |
Beta Was this translation helpful? Give feedback.
Hi @ufsaa2022
I am not sure if you are using PyMAPDL (bit
launch_mapdl
) or usingpymechanical
(from the error message).Anyways, if you refer to PyMAPDL, PyMAPDL cannot start an MAPDL instance in a remote PC. You need to launch it manually in that PC, and then connect to it from PyMAPDL.
For instance in the remote PC with ip XXX.YY.ZZ.WW issue:
Then from your laptop (without Ansys, but in the same network as the other one) you launch python and type:
I hope it helps.