"docs/ZH_CN/vscode:/vscode.git/clone" did not exist on "91ef1bd176e8fb82d6669af4135c6c893e1b5209"
__main__.py 219 Bytes
Newer Older
yuhai's avatar
yuhai committed
1
2
3
4
5
6
7
8
9
10
11
import os
import sys
try:
    import deepks
except ImportError as e:
    sys.path.append(os.path.dirname(os.path.realpath(__file__)) + "/../")

from deepks.main import main_cli

if __name__ == "__main__":
    main_cli()