Last modified by adavison on 2022/10/04 13:53

From version 27.19
edited by shailesh
on 2021/10/08 15:49
Change comment: There is no comment for this version
To version 27.20
edited by shailesh
on 2021/10/08 16:01
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -237,12 +237,47 @@
237 237  (% class="box infomessage" %)
238 238  (((
239 239  **Screencast** - terminal
240 -\\(% style="color:#000000" %)pip install PyNN
240 +\\(% style="color:#000000" %)pip install pyNN
241 241  )))
242 242  
243 243  To verify that PyNN has been successfully installed on our system, and that it is indeed able to communicate with the other simulators that we installed earlier, we can try running:
244 244  
245 +(% class="box infomessage" %)
246 +(((
247 +**Screencast** - terminal
245 245  
249 +(% style="color:#000000" %)python
250 +\\import pyNN.brian2 as sim
251 +
252 +(% style="color:#000000" %)sim.setup()
253 +
254 +(% style="color:#000000" %)sim.end()
255 +)))
256 +
257 +This confirms that PyNN has been properly setup, and also that is able to employ Brian 2. To verify similary test that PyNN is also able to communicate with NEURON and NEST simulators:
258 +
259 +(% class="box infomessage" %)
260 +(((
261 +**Screencast** - terminal
262 +
263 +(% style="color:#000000" %)python
264 +\\import pyNN.nest as sim
265 +
266 +(% style="color:#000000" %)sim.setup()
267 +
268 +(% style="color:#000000" %)sim.end()
269 +
270 +
271 +
272 +(% style="color:#000000" %)import pyNN.neuron as sim
273 +
274 +(% style="color:#000000" %)sim.setup()
275 +
276 +(% style="color:#000000" %)sim.end()
277 +)))
278 +
279 +A
280 +
246 246  (% class="box successmessage" %)
247 247  (((
248 248  **Slide** recap of learning objectives