Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ansys/tools/installer/installed_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ def launch_spyder(self):
error_msg = "(pip install spyder && spyder && exit 0) || echo Failed to launch. Try reinstalling spyder with pip install spyder --force-reinstall"
self._update_pck_mnger()
self.launch_cmd(
f'pip list | findstr "spyder" && spyder && exit 0 || {error_msg}'
f'pip list | {"grep" if is_linux_os() else "findstr"} "spyder" && spyder && exit 0 || {error_msg}'
)

def launch_jupyterlab(self):
Expand Down