We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5f6ee92 + d0e1ede commit 0da8b04Copy full SHA for 0da8b04
1 file changed
pynest/nest/ll_api.py
@@ -159,7 +159,25 @@ def init(argv):
159
initialized = True
160
161
if not quiet:
162
- print("NEST initialized successfully!")
+ 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
+ )
181
182
# Dirty hack to get tab-completion for models in IPython.
183
try:
0 commit comments