Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/helveg/neuro3d
Blender framework for visualization of neurons and simulation data.
https://github.com/helveg/neuro3d
Last synced: 22 days ago
JSON representation
Blender framework for visualization of neurons and simulation data.
- Host: GitHub
- URL: https://github.com/helveg/neuro3d
- Owner: Helveg
- License: gpl-3.0
- Created: 2021-04-20T10:46:05.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-07-26T19:40:29.000Z (over 3 years ago)
- Last Synced: 2024-03-25T14:49:17.792Z (10 months ago)
- Language: Python
- Size: 129 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# neuro3d
Blender framework for visualization of neurons and simulation data.# Installation
Make sure that `python` and `blender` are valid commands. Most likely you have to make them available on your PATH.
## Linux
```
curl -Ls https://github.com/Helveg/neuro3d/releases/latest/download/install | python
```## Windows
Execute the following snippet from the command line or PowerShell:
```
powershell.exe -command PowerShell -ExecutionPolicy Bypass -noprofile -command Invoke-WebRequest -Uri https://github.com/Helveg/neuro3d/releases/latest/download/install -OutFile _tmp_n3d_install.py; Invoke-Expression "python _tmp_n3d_install.py"; Remove-Item -Path "_tmp_n3d_install.py"
```