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
Copy file name to clipboardExpand all lines: 1_requirements.html
+11-6Lines changed: 11 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -87,13 +87,16 @@
87
87
<spanid="requirements"></span><h1>Requirements and Quickstart<aclass="headerlink" href="#requirements-and-quickstart" title="Link to this heading"></a></h1>
88
88
<sectionid="basic-environment">
89
89
<h2>Basic Environment<aclass="headerlink" href="#basic-environment" title="Link to this heading"></a></h2>
90
-
<p>This page summarizes the system requirements and dependencies of PyFTLE3D.</p>
90
+
<p>This page summarizes the system requirements and dependencies of <codeclass="docutils literal notranslate"><spanclass="pre">PyFTLE3D</span></code>.</p>
91
91
<p>Firstly, the following packages are supposed to be installed on your computer manually in advance.</p>
92
92
<olclass="arabic simple">
93
93
<li><p><aclass="reference external" href="https://www.python.org/">Python</a> version 3.13. Later version than 3.8 till 3.13 should work properly, but was not fully tested. The official download could be found at <aclass="reference external" href="https://www.python.org/downloads/release/python-3130/?featured_on=pythonbytes">here</a>. Please select Python installer according to your system framework.</p></li>
94
94
<li><p><aclass="reference external" href="https://developer.nvidia.com/cuda-toolkit">CUDA Toolkit</a> version 12.9 (<aclass="reference external" href="https://developer.nvidia.com/cuda-toolkit-archive">Download</a>). All versions crossing 12.x.x should theoretically work, but only 12.9 was fully tested. Ealier versions could work as well, but it requires a different version of <cite>cupy</cite>, and could cause unexpected performance decay and errors. See <cite>cupy</cite> documentation for more information.</p></li>
95
95
<li><p><aclass="reference external" href="https://pypi.org/project/pip/">pip</a> newest version, which is used for installing further dependencies. It can be installed by:</p></li>
<p>Generally, the following dependencies can be installed via <codeclass="docutils literal notranslate"><spanclass="pre">pip</span></code>, the Python package manager.</p>
98
101
<olclass="arabic simple">
99
102
<li><p><aclass="reference external" href="https://numpy.org">numpy</a> version 1.21 or later</p></li>
<p>When it does not work, consider if your current dir is incorrect. It should be run from the project root of <codeclass="docutils literal notranslate"><spanclass="pre">Py3DFTLE</span></code> when undergoing configurations and under <aclass="reference internal" href="7_command.html#command"><spanclass="std std-ref">command-line</span></a> mode. Please feel free about such thing under GUI mode.</p>
112
118
</section>
113
119
<sectionid="add-on-libs">
114
120
<h2>Add-on Libs<aclass="headerlink" href="#add-on-libs" title="Link to this heading"></a></h2>
115
-
<olclass="arabic simple">
116
-
<li><p><strong>ParaView</strong></p></li>
117
-
</ol>
118
-
<p>ParaView is a powerful beloved open-source visualization platform based on vtk that can be used to visualize the results of 3D FTLE computations. We also integrated the ParaView entrance into our GUI, so you can directly open ParaView from it. The ParaView installation-free package (v6.0) can be downloaded from <aclass="reference external" href="https://www.paraview.org/paraview-downloads/download.php?submit=Download&version=v6.0&type=binary&os=Windows&downloadFile=ParaView-6.0.0-RC1-MPI-Windows-Python3.12-msvc2017-AMD64.zip">official</a>.
121
+
<p><strong>1. ParaView</strong></p>
122
+
<p>ParaView is a powerful beloved open-source visualization platform based on <em>vtk</em> that can be used to visualize the results of 3D FTLE computations. We also integrated the ParaView entrance into our GUI, so you can directly open ParaView from it.
123
+
The ParaView installation-free package (v6.0) can be downloaded from <aclass="reference external" href="https://www.paraview.org/paraview-downloads/download.php?submit=Download&version=v6.0&type=binary&os=Windows&downloadFile=ParaView-6.0.0-RC1-MPI-Windows-Python3.12-msvc2017-AMD64.zip">official</a>.
119
124
For already-installed ParaView, set environment variable <codeclass="docutils literal notranslate"><spanclass="pre">PARAVIEW_PATH</span></code> pointing to the root dir of ParaView to enable integration from GUI of <codeclass="docutils literal notranslate"><spanclass="pre">Py3DFTLE</span></code>.</p>
120
125
</section>
121
126
<sectionid="quickstart">
122
127
<h2>Quickstart<aclass="headerlink" href="#quickstart" title="Link to this heading"></a></h2>
123
128
<p>An computation example coming with a set of our in-house downscaled Direct Navier-Stokes Simulation (DNS) data is provided, including :math:
124
-
The dataset can be downloaded from <cite>here <https://noting.noting></cite>, and the case descriptions can be referred to paper [1].</p>
129
+
The dataset can be downloaded from <cite>here <https://noting.noting>__</cite>, and the case descriptions can be referred to paper [1].</p>
Copy file name to clipboardExpand all lines: _sources/1_requirements.rst.txt
+7-4Lines changed: 7 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ Requirements and Quickstart
6
6
Basic Environment
7
7
-----------------
8
8
9
-
This page summarizes the system requirements and dependencies of PyFTLE3D.
9
+
This page summarizes the system requirements and dependencies of ``PyFTLE3D``.
10
10
11
11
Firstly, the following packages are supposed to be installed on your computer manually in advance.
12
12
@@ -17,6 +17,7 @@ Firstly, the following packages are supposed to be installed on your computer ma
17
17
3. `pip <https://pypi.org/project/pip/>`__ newest version, which is used for installing further dependencies. It can be installed by:
18
18
19
19
.. code-block::
20
+
20
21
python -m ensurepip --upgrade
21
22
22
23
Generally, the following dependencies can be installed via ``pip``, the Python package manager.
@@ -35,19 +36,21 @@ Generally, the following dependencies can be installed via ``pip``, the Python p
35
36
You can install them after installing ``pip`` by:
36
37
37
38
.. code-block::
39
+
38
40
pip install -r ./requirements.txt
39
41
40
42
When it does not work, consider if your current dir is incorrect. It should be run from the project root of ``Py3DFTLE`` when undergoing configurations and under :ref:`command-line <command>` mode. Please feel free about such thing under GUI mode.
41
43
42
44
43
45
Add-on Libs
44
46
-----------------
45
-
1. **ParaView**
47
+
**1. ParaView**
46
48
47
-
ParaView is a powerful beloved open-source visualization platform based on vtk that can be used to visualize the results of 3D FTLE computations. We also integrated the ParaView entrance into our GUI, so you can directly open ParaView from it. The ParaView installation-free package (v6.0) can be downloaded from `official <https://www.paraview.org/paraview-downloads/download.php?submit=Download&version=v6.0&type=binary&os=Windows&downloadFile=ParaView-6.0.0-RC1-MPI-Windows-Python3.12-msvc2017-AMD64.zip>`__.
49
+
ParaView is a powerful beloved open-source visualization platform based on *vtk* that can be used to visualize the results of 3D FTLE computations. We also integrated the ParaView entrance into our GUI, so you can directly open ParaView from it.
50
+
The ParaView installation-free package (v6.0) can be downloaded from `official <https://www.paraview.org/paraview-downloads/download.php?submit=Download&version=v6.0&type=binary&os=Windows&downloadFile=ParaView-6.0.0-RC1-MPI-Windows-Python3.12-msvc2017-AMD64.zip>`__.
48
51
For already-installed ParaView, set environment variable ``PARAVIEW_PATH`` pointing to the root dir of ParaView to enable integration from GUI of ``Py3DFTLE``.
49
52
50
53
Quickstart
51
54
-----------------
52
55
An computation example coming with a set of our in-house downscaled Direct Navier-Stokes Simulation (DNS) data is provided, including :math:
53
-
The dataset can be downloaded from `here <https://noting.noting>`, and the case descriptions can be referred to paper [1].
56
+
The dataset can be downloaded from `here <https://noting.noting>__`, and the case descriptions can be referred to paper [1].
0 commit comments