Problems that occur during the installation process #388
Zanthoxylum
started this conversation in
General
Replies: 2 comments
This comment has been minimized.
This comment has been minimized.
-
|
Thanks for reporting the issues. We need to work on the installation to update and replace distutils with meson/cmake also to enable SSCHA on python >= 3.12, however, we need someone willing to write a working meson/cmake implementation of the installation. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
A suggested installation statement is
conda create -n sscha -c conda-forge python=3.11 gfortran libblas lapack openmpi julia openmpi-mpicc pip numpy scipy spglib=2.2 setuptools=64However, this instruction will result in an error. Because the version of setuptools conflicts with other packages, but I found that we can temporarily not set the version of setuptools, and then install a separate setuptools==64.
Another issue is that in this file, FModules/second_order_ASR.f90, many places use an unstandardized statement, such as:
if (verbose) write(*,"(' Sum on 2nd=' e20.6 ' Imp. ASR on 2nd: => delta FC=' e20.6)") sum2nd,FCvarThis might cause the following error.
At line 304 of file FModules/second order AsR.f90 (unit = 6, file = 'stdout') Fortran runtime error: Missing comma between descriptors (' Iter #' I5 ' ====')For the six or seven such issues in the file, adding commas and recompiling the file would solve the problem.
Perhaps this can be fixed.
Beta Was this translation helpful? Give feedback.
All reactions