You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -48,7 +48,13 @@ if [ "$user_selection" = "Y" ]; then
48
48
done
49
49
if [ $dependencies_available=true ];then
50
50
sudo rpm -iv ansys_python_manager_*.rpm
51
-
printf"\nInstallation success...\n"
51
+
available=$(cat ~/.bashrc | grep -zoP "# Add alias for Ansys Python Manager \nalias ansys_python_manager=~/.local/opt/ansys_python_manager/ansys_python_manager"| wc -l)
52
+
echo$available
53
+
if [ $available-lt 1 ]
54
+
then
55
+
echo -e "# Add alias for Ansys Python Manager \nalias ansys_python_manager=~/.local/opt/ansys_python_manager/ansys_python_manager"| sudo tee -a ~/.bashrc
56
+
fi
57
+
printf"\nInstallation success...\nIt is suggested to restart your machine to begin using the software....\n"
<p>Project build using <a href='https://wiki.qt.io/Qt_for_Python'> PySide6</a> and <a href='https://pyinstaller.org/en/stable/'> PyInstaller</a>.</p>
38
39
<p>If you have any questions or issues, please open an issue in <a href='https://github.com/ansys/python-installer-qt-gui/issues'>python-installer-qt-gui Issues</a> page.</p>
39
40
<p>Alternatively, you can contact us at <a href='mailto:pyansys.core@ansys.com'>pyansys.core@ansys.com</a>.</p>
40
41
<p>Your use of this software is governed by the MIT License. In addition, this installer allows you to access and install software that is licensed under separate terms ("Separately Licensed Software"). If you chose to install such Separately Licensed Software, you acknowledge that you are responsible for complying with any associated terms and conditions.</p>
41
-
<p>Copyright 2023 ANSYS, Inc. All rights reserved.</p>
42
+
<p>Copyright 2023 - 2024 ANSYS, Inc. All rights reserved.</p>
42
43
"""
43
44
44
45
UNABLE_TO_RETRIEVE_LATEST_VERSION_TEXT=f"""
@@ -67,6 +68,9 @@
67
68
68
69
While choosing the latest version of Python is generally recommended, some third-party libraries and applications may not yet be fully compatible with the newest release. Therefore, it is recommended to try the second newest version, as it will still have most of the latest features and improvements while also having broader support among third-party packages."""
69
70
71
+
PRE_COMPILED_PYTHON_WARNING="""
72
+
<b>NOTE:</b> Only 'Python 3.11' version is readily available. Other Python versions are compiled from source and it takes approximately 2-3 minutes."""
73
+
70
74
PYTHON_VERSION_SELECTION_FOR_VENV="""Choose the version of Python to use for your virtual environment.
71
75
72
76
Please select the Python version from the table below to create its respective virtual environment."""
0 commit comments