Search found 1606 matches
- Mon Jun 01, 2020 1:50 pm
- Forum: UNIX/Linux
- Topic: Open MPI error with h.nrnmpi_init(): mca_base_component_repository_open: unable to open mca_patcher_overwrite
- Replies: 7
- Views: 2362
Re: Open MPI error with h.nrnmpi_init(): mca_base_component_repository_open: unable to open mca_patcher_overwrite
Let's see if this problem disappears with a cmake build. If you don't have cmake, then sudo apt install cmake Then with a fresh nrn repository clone git clone https://github.com/neuronsimulator/nrn nrncmake cd nrncmake mkdir build cd build cmake .. -DCMAKE_INSTALL_PREFIX=install make -j install expo...
- Mon Jun 01, 2020 11:50 am
- Forum: Other questions
- Topic: Temperature Dependent Membrane Capacitance
- Replies: 4
- Views: 1635
Re: Temperature Dependent Membrane Capacitance
Please see https://github.com/nrnhines/dcmdt in particular the comment in hhdcdt.mod
- Fri Apr 03, 2020 5:44 pm
- Forum: NEURON + Python
- Topic: Copy a nrn object in Python?
- Replies: 5
- Views: 1210
Re: Copy a nrn object in Python?
You're right, there are no __deepcopy__ method implementations for NEURON objects like sections, segments, mechanisms, point processes, NetCon, or other potentially relevant info such as gid in parallel models. In some cases, a copy is not valid such as for top level hoc Section (constructed by the ...
- Wed Mar 25, 2020 5:26 pm
- Forum: OS X
- Topic: Installation Help: Fail to "import neuron" in Python
- Replies: 4
- Views: 1371
Re: Installation Help: Fail to "import neuron" in Python
I think the easiest installation is to try to remove all of what you have done and download https://neuron.yale.edu/ftp/neuron/versions/alpha/nrn-7.8.0-82-g5104c2e7-osx-py-27-36-37-38.pkg and double click on it. If that works and you then want to build from github sources, I can give the recipe for ...
- Wed Mar 25, 2020 12:41 pm
- Forum: OS X
- Topic: Installation Help: Fail to "import neuron" in Python
- Replies: 4
- Views: 1371
Re: Installation Help: Fail to "import neuron" in Python
You didn't mention whether you installed from sources or a pkg file? I'll assume the former. You didn't mention how you configured. So I don't know where the neuron module was installed. Or where the bulk of neuron itself was installed. With your PATH=$HOME/local/bin I assume you used cmake (configu...
- Wed Mar 11, 2020 9:19 am
- Forum: Other questions
- Topic: Cannot load compiled mod files from python
- Replies: 1
- Views: 636
Re: Cannot load compiled mod files from python
The symbol that is not found would be in the interviews library and it is not clear to me why that is needed to successfully load the libnrnmech.so file. Can you try the following test which loads the mod files for the neurondemo python3 from neuron import h h.nrn_load_dll("/Applications/NEURON...
- Mon Feb 10, 2020 11:54 am
- Forum: OS X
- Topic: NEURON installation on macOS Catalina
- Replies: 8
- Views: 3377
Re: NEURON installation on macOS Catalina
Check the output of otool -L /Applications/NEURON-7.7/nrn/lib/python/neuron/hoc.so to see if it cannot find any of the libraries that library is trying to load. It may be that you need to install/upgrade your command line tools and XQuartz. The latter comes from xquartz.org. For the former, when I t...
- Fri Feb 07, 2020 6:26 pm
- Forum: OS X
- Topic: NEURON installation on macOS Catalina
- Replies: 8
- Views: 3377
Re: NEURON installation on macOS Catalina
If you start a terminal and launch python or python3 what is the result of
import sys
sys.version
import sys
sys.version
- Thu Jan 23, 2020 2:04 pm
- Forum: OS X
- Topic: NEURON installation on macOS Catalina
- Replies: 8
- Views: 3377
Re: NEURON installation on macOS Catalina
It appears that XQuartz is not installed. You can do that from xquartz.orgld: library not found for -lX11
- Wed Jan 15, 2020 7:20 am
- Forum: Modeling networks
- Topic: Simulation with external feedback
- Replies: 1
- Views: 819
Re: Simulation with external feedback
The problem with VecStim is that the mod file implementation did not envision this style of usage. I would recommend adding a restart procedure which, after you replace the Vector in the middle of a simulation, would set the counter to the first element of the Vector and do a net_send to activate th...
- Mon Dec 23, 2019 8:48 am
- Forum: OS X
- Topic: NEURON installation on macOS Catalina
- Replies: 8
- Views: 3377
Re: NEURON installation on macOS Catalina
Yes. It is not enough any longer that the package be signed, it must also be notarized (now a $100 annual fee). Notarization means that Apple scanned the app for known malicious software. From https://support.apple.com/en-us/HT202491 How to open an app that hasn’t been notarized or is from an uniden...
- Mon Dec 23, 2019 8:34 am
- Forum: UNIX/Linux
- Topic: Which environmental variables do I need to setup for NEURON to work after rpm installation without sudo with cpio
- Replies: 1
- Views: 970
Re: Which environmental variables do I need to setup for NEURON to work after rpm installation without sudo with cpio
MODLUNIT and NEURONHOME should be export MODLUNIT=/home/ziemek/usr/local/nrn/share/nrn/lib/nrnunits.lib export NEURONHOME=/home/ziemek/usr/local/nrn/share/nrn (I'm not sure but if you have NEURONHOME set, you may not need MODLUNIT) If you want to launch python and import neuron then export PYTHONPAT...
- Wed Nov 06, 2019 6:34 am
- Forum: Adding new mechanisms and functions to NEURON
- Topic: adrunge not thread safe
- Replies: 2
- Views: 842
Re: adrunge not thread safe
I had forgotten about that. It was the default for SCoP. The fix on our part will be to replace the existing adrunge implementation with a thread safe version. Nevertheless, adrunge generally makes little sense in a NEURON context since the extra accuracy does not translate into a more accurate simu...
- Fri Nov 01, 2019 9:29 am
- Forum: Parallel NEURON
- Topic: parallel simulation hang on permanently at some loops
- Replies: 1
- Views: 2445
Re: parallel simulation hang on permanently at some loops
You did not mention whether the 7.7 version hangs on your Macbook pro and on comet. Or if NEURON 7.5 has no problem on Manjaro linux. There have been a lot of mpi changes since 7.5. If it does not take too long to run an example, you can send me a zip file with sufficient code to exhibit the problem...
- Fri Nov 01, 2019 9:17 am
- Forum: UNIX/Linux
- Topic: PyNeuron + Ubuntu + Python 3.6
- Replies: 5
- Views: 2560
Re: PyNeuron + Ubuntu + Python 3.6
So I assume that I can just add libs by hand to the PYTHONPATH, but could you tell me where I can find export PYTHONPATH=/where/you/installed/nrn/lib #often /usr/local/nrn/lib The default build installs the NEURON module in <prefix>/lib/python in order to be python independent of the python version...