AI/neuron

[neuron][파이썬] 01. neuron 라이브러리 시작하기 - 튜토리얼

내만 2022. 7. 19. 21:22
728x90
반응형

 

 

 

 

 

🙆‍♂️neuron 설치


https://www.neuron.yale.edu/neuron/download

 

Precompiled installers | NEURON

If NEURON is already installed, uninstall it before installing a different version. The current standard distribution is version 8.2. It is recommended for most users, especially for new projects. On Linux, just do: pip3 install neuron   See other downloa

www.neuron.yale.edu

이곳에서 다운로드 할 수 있습니다.

 

클릭해서 다운로드

 

Next

 

Install

 

Finish

 

 

🙋‍♂️Jupyter Notebook으로 버전 확인


import neuron
print(neuron.__version__)

 jupyter notebook으로 들어가서 버전을 확인할 수 있습니다.

 

🤷‍♂️ 하위 모듈 사용


nureon 모듈에서는 직접 사용할 수 있는 기능이 한정적이기에 하위 모듈을 직접 가져와야 합니다.

from neuron import h
from neuron import h,rxd
from neuron.units import ms, mV

 

이런식으로 하위 모듈을 가져올 수 있습니다.

728x90
반응형