### Summary I have installed deepmd and lammps in plugin mode following the instruction in https://github.com/deepmodeling/deepmd-kit/blob/master/doc/install/install-from-source.md and https://github.com/deepmodeling/deepmd-kit/blob/master/doc/install/install-lammps.md. However I got this error when executor command `${deepmd_root}/bin/lmp -i in.lammps -v restart 0`: ERROR: Unrecognized pair style 'deepmd' (src/force.cpp:279) ### DeePMD-kit Version v2.1.5 ### TensorFlow Version 2.9 ### Python Version, CUDA Version, GCC Version, LAMMPS Version, etc _No response_ ### Details The problem can be solved by: ``` cd ${deepmd_root}/lib ln -s libdeepmd_lmp.so dpplugin.so ``` Then executor lmp: ``` LAMMPS_PLUGIN_PATH=${deepmd_root}/lib/ ${deepmd_root}/bin/lmp -i in.lammps -v restart 0 ``` I'm not sure if this is my problem.
Summary
I have installed deepmd and lammps in plugin mode following the instruction in
https://github.com/deepmodeling/deepmd-kit/blob/master/doc/install/install-from-source.md and
https://github.com/deepmodeling/deepmd-kit/blob/master/doc/install/install-lammps.md.
However I got this error when executor command
${deepmd_root}/bin/lmp -i in.lammps -v restart 0:ERROR: Unrecognized pair style 'deepmd' (src/force.cpp:279)
DeePMD-kit Version
v2.1.5
TensorFlow Version
2.9
Python Version, CUDA Version, GCC Version, LAMMPS Version, etc
No response
Details
The problem can be solved by:
Then executor lmp:
I'm not sure if this is my problem.