Skip to content

Commit 0da8b04

Browse files
authored
Merge pull request #3755 from heplesser/fix_welcome
Restore full welcome message
2 parents 5f6ee92 + d0e1ede commit 0da8b04

1 file changed

Lines changed: 19 additions & 1 deletion

File tree

pynest/nest/ll_api.py

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,25 @@ def init(argv):
159159
initialized = True
160160

161161
if not quiet:
162-
print("NEST initialized successfully!")
162+
build_info = nestkernel.llapi_get_kernel_status()["build_info"]
163+
print(
164+
f"""
165+
-- N E S T --
166+
167+
Copyright (C) 2004 The NEST Initiative
168+
169+
Version: {build_info["version"]}
170+
Built : {build_info["built"]}
171+
172+
This program is provided AS IS and comes with NO WARRANTY.
173+
See the file LICENSE for details.
174+
175+
Problems or suggestions?
176+
Visit https://www.nest-simulator.org
177+
178+
Type 'nest.help()' to find out more about NEST.
179+
"""
180+
)
163181

164182
# Dirty hack to get tab-completion for models in IPython.
165183
try:

0 commit comments

Comments
 (0)