Changes for page 02. Installing PyNN - Linux
Last modified by adavison on 2022/10/04 13:53
Summary
-
Page properties (1 modified, 0 added, 0 removed)
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 PyNN240 +\\(% 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 +This confirms that all the required software packages have been successfully completed, and are functioning as expected. 280 + 246 246 (% class="box successmessage" %) 247 247 ((( 248 248 **Slide** recap of learning objectives