@@ -59,50 +59,40 @@ after restarting the Python kernel.
5959
6060Offline Installation
6161~~~~~~~~~~~~~~~~~~~~
62- If you would like to install `` ansys-mapdl-core `` on a computer
63- without access to the internet, you can create a `` wheelhouse `` that
64- contains all the dependencies necessary to install a python package
65- without downloading each package individually .
62+ If you lack an internet connection on your install machine, the recommended way
63+ of installing PyMAPDL is downloading the wheelhouse archive from the ` Releases
64+ Page <https://github.com/pyansys/pymapdl/releases> `_ for your corresponding
65+ machine architecture .
6666
67- On the host connected to the internet, run:
67+ Each wheelhouse archive contains all the python wheels necessary to install
68+ PyMAPDL from scratch on Windows and Linux for Python 3.7 and 3.9. You can install
69+ this on an isolated system with a fresh python or on a virtual environment.
6870
69- .. code ::
70-
71- pip install wheel
72- python -m pip wheel --wheel-dir=pyansys_wheelhouse ansys-mapdl-core
73-
74- This creates a new directory called ``pyansys_wheelhouse `` which
75- contains every python package necessary to install
76- ``ansys-mapdl-core ``.
77-
78- Next, zip the ``pyansys_wheelhouse `` directory and upload it to your
79- offline computer. On the offline computer, unzip it and then install
80- it with:
71+ For example, on Linux with Python 3.7, unzip it and install it with the following:
8172
8273.. code ::
8374
84- python -m pip install --no-index --find-links=pyansys_wheelhouse ansys-mapdl-core
85-
86- This tells Python to install ``ansys-mapdl-core `` by only looking
87- within the ``pyansys_wheelhouse `` directory.
75+ unzip PyMAPDL-v0.62.dev1-wheelhouse-Linux-3.7.zip wheelhouse
76+ pip install ansys-mapdl-core -f wheelhouse --no-index --upgrade --ignore-installed
8877
89- .. note ::
78+ If you're on Windows with Python 3.9, unzip to a ``wheelhouse `` directory and
79+ install using the same command as above.
9080
91- The OS and version of Python used to generate the wheelhouse must
92- match the offline machine .
81+ Consider installing using a ` virtual environment
82+ <https://docs.python.org/3/library/venv.html> `_ .
9383
9484
95- ANSYS Software Requirements
85+ Ansys Software Requirements
9686~~~~~~~~~~~~~~~~~~~~~~~~~~~
97- For the latest features, you will need a copy of ANSYS 2021R1
98- installed locally, but PyMAPDL is compatible with ANSYS 17.0 and newer
87+ For the latest features, you will need a copy of Ansys 2021R1
88+ installed locally, but PyMAPDL is compatible with Ansys 17.0 and newer
9989on Windows and 13.0 on Linux.
10090
10191.. note ::
10292
103- The latest versions of ANSYS provide signifiantly better support
93+ The latest versions of Ansys provide signifiantly better support
10494 and features. Certain features will not be supported by earlier
105- versions of ANSYS (e.g. APDL Math).
95+ versions of Ansys (e.g. APDL Math).
10696
10797
10898Verify Your Installation
0 commit comments