Difference between revisions of "Matgen toolkit"

From wiki
Jump to: navigation, search
(Created page with "# MOFkit --- ## Installation ### Environment * Linux * GCC-5.4.0, need to support C ++ 11 and above * Make ### Compile * compile all files - `make` or `make all` * compil...")
(No difference)

Revision as of 14:13, 11 February 2020

  1. MOFkit

---

    1. Installation


      1. Environment
  • Linux
  • GCC-5.4.0, need to support C ++ 11 and above
  • Make
      1. Compile
  • compile all files - `make` or `make all`
  • compile specified function(`rm_mof_solvents/find_space_groups/in_cell/ICSD_classify/CSD_classify/format`) - `make func`
  • delete executable - `make clean`
      1. Configuration
 ```shell
 $ git clone https://github.com/atztogo/spglib.git
 $ cd spglib
 $ mkdir _build
 $ cd _build
 $ cmake ..
 $ make
 $ make install
 ```