Skip to content

Latest commit

 

History

History
71 lines (49 loc) · 2.11 KB

README.md

File metadata and controls

71 lines (49 loc) · 2.11 KB

Neurobook_BME_UND

This repository houses all code bases, examples, and Read Me's for the Open Source Neuroengineering Book developed by students at the University of North Dakota BME Program

Neuron Simulation Project

This repository contains code examples for each chapter in the Neuoengineering textbook. Each chapter of the book has its own folder containing relevant code examples, a README.md for instructions, and a requirements.txt for dependencies if applicable. Code examples are written in various languages, styles, and requirements to allow for a breadth of experiences. As you go through the code examples, utilize your knowledge from the chapter to reinforce your learning!

We hope you enjoy your journey through this github!

Chapter Folders

Setup Instructions For Python Code

Prerequisites

  1. Windows Subsystem for Linux (WSL)
  2. Visual Studio Code (VS Code)
  3. Git
  4. Python 3.10 or higher

Step-by-Step Guide

1. Install WSL and VS Code

2. Open VS Code with WSL

  1. Open VS Code.
  2. Press Ctrl+Shift+P to open the command palette.
  3. Type WSL: New Window and select it to open a new VS Code window with a WSL session.

3. Clone the GitHub Repository

  1. Open the terminal in VS Code (using WSL).

  2. Navigate to your desired directory:

    cd /path/to/your/directory
    
  3. Clone the GitHub Repository

    git clone https://github.com/your-username/your-repo.git
    
  4. Navigate to the Chapter repo you want to run examples for

    cd chapter repo
    
  5. Run the examples

    python3 example.py
    

NOW YOU ARE SET!

Authors