Skip to content

Commit 33eafdb

Browse files
authored
.
1 parent dff446f commit 33eafdb

File tree

1 file changed

+14
-26
lines changed

1 file changed

+14
-26
lines changed

docs/Installation/Troubleshooting/index.rst

Lines changed: 14 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ Troubleshooting
22
--------------------------------------
33

44
General error while installing/compiling Xmipp (non-development installations)
5-
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
5+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
66

7-
If you are getting an error during the Xmipp compilation, consider to read compilationLog.txt file located in the xmipp floder (by default in scipion2/software/em) and review the `Xmipp's configuration page <https://i2pc.github.io/docs/Utils/ConfigurationF/index.html#configuration-file>`_.
7+
If you are getting an error during the Xmipp compilation, consider to read compilationLog.txt file located in the xmipp folder (by default in scipion3/software/em)/xmippSrc). You can also review the `requirements of Xmipp <https://i2pc.github.io/docs/Installation/Requirements/index.html>`_.
88

99
Alternatively, you can go with the plugin manager or by running
1010

@@ -22,39 +22,27 @@ If ``ERROR: Could not find target xmippSrc`` is gotten, try to run
2222
If the problem persist, don't hesitate to `contact us <https://scipion-em.github.io/docs/release-3.0.0/docs/misc/contact-us.html#contact-us>`__.
2323

2424

25-
Compiling Xmipp to be used in both Intel and AMD cores
26-
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
27-
28-
Xmipp is optimizing the compilation to the architecture found in the compilation
29-
time. However, this is not a good idea if it must run on both AMD and Intel cores
30-
at once (e.g. in a cluster or so). To make more flexible the optimization on the
31-
compilation, then the ``CXXFLAGS`` can be set properly.
25+
HDF5
26+
^^^^^^^^^^^^^^^^^^^^^^^^^^
3227

33-
Please, just
28+
We sometimes see issues regarding the HDF5 dependency.
29+
We recommend removing all hdf5 versions and install just hdf5-devel. To do that:
3430

35-
::
3631

37-
export CXXFLAGS="-mfma -mavx2 -m3dnow -fomit-frame-pointer -std=c++11 -O3"
32+
.. code-block:: bash
3833
39-
before running the Scipion3 installer.
34+
sudo apt remove hdf5
35+
sudo apt remove hdf5-devel
36+
pip uninstall h5py
4037
41-
Please, check `Xmipp's configuration page <https://i2pc.github.io/docs/Utils/ConfigurationF/index.html#configuration-file>`_ for more details.
38+
Remove all files related to hdf5 in /usr/lib64/libhdf5*, /usr/include/hdf5* and .../anaconda3/include/hdf5*.
4239

40+
We strongy recommend you to install it via your default package manager:
4341

44-
HDF5
45-
^^^^^^^^^^^^^^^^^^^^^^^^^^
42+
.. code-block:: bash
4643
47-
We sometimes see issues regarding the HDF5 dependency.
48-
We recommend removing all hdf5 versions and install just hdf5-devel. To do that:
49-
```
50-
sudo apt remove hdf5
51-
sudo apt remove hdf5-devel
52-
pip uninstall h5py
53-
```
54-
Remove all files related to hdf5 in /usr/lib64/libhdf5*, /usr/include/hdf5* and .../anaconda3/include/hdf5*.
44+
sudo apt-get install libhdf5-dev
5545
56-
We strongy recommend you to install it via your default package manager:
57-
`sudo apt-get install libhdf5-dev`
5846
If you install it using other package management system (such as Conda), it might lead to compile/link time issues caused by incompatible version being fetched.
5947

6048

0 commit comments

Comments
 (0)