How to install nest in Python3 on Ubuntu 18.04
NickName:Robin De Schepper Ask DateTime:2019-09-12T23:21:26

How to install nest in Python3 on Ubuntu 18.04

After following the Ubuntu/Debian installation instructions for the Nest simulator I can only import the nest module in python2.x, not python3.x

$ python3
Python 3.6.8 (default, Aug 20 2019, 17:12:48) 
[GCC 8.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import nest
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/nest/lib/python2.7/site-packages/nest/__init__.py", line 26, in <module>
    from . import ll_api      # noqa
  File "/nest/lib/python2.7/site-packages/nest/ll_api.py", line 72, in <module>
    from . import pynestkernel as kernel      # noqa
ImportError: dynamic module does not define module export function (PyInit_pynestkernel)

Copyright Notice:Content Author:「Robin De Schepper」,Reproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/57909894/how-to-install-nest-in-python3-on-ubuntu-18-04

More about “How to install nest in Python3 on Ubuntu 18.04” related questions

How to install nest in Python3 on Ubuntu 18.04

After following the Ubuntu/Debian installation instructions for the Nest simulator I can only import the nest module in python2.x, not python3.x $ python3 Python 3.6.8 (default, Aug 20 2019, 17:12...

Show Detail

How to install tensorflow 1.15.0 in Ubuntu server 18.04

I am using Azure to create an Ubuntu server 18.04. The python3 default version in this VM is 3.6.9. I tried to install python3-pip, then install Tensorflow version 1.15.0 by command: sudo pip3 inst...

Show Detail

how to install pecl on ubuntu 18.04

I am using ubuntu 18.04 docker image. and install apt install php and i want to install xdebug but there is no pecl. how to install pecl?

Show Detail

install mysql 8.0.17 ubuntu 18.04

I need mysql 8.0.17 on ubuntu 18.04. I downloaded their archive mysql file mysql-server_8.0.17-1ubuntu18.04_amd64.deb-bundle.tar (https://downloads.mysql.com/archives/community/) and tried to insta...

Show Detail

restore python3.6 on ubuntu 18.04

my ubuntu 18.04 had a default python3 to python3.5. I wanted to use python3.6, so I removed all instances of python3.5. unfortunately, then I found out I don't have python3.6 in the os, only in my

Show Detail

Omnetpp cannot install on Ubuntu 18.04?

This is just a note of my experience which I want to share to other newbies of OMNetpp. Don't waste your precious time on installment. The official document of omnetpp 5.5.1 said it support multi...

Show Detail

Install docker on ubuntu using ansible with python3

I want to install docker on an ubuntu server, using ansible. Environment: - local/controller server: ansible 2.8.4 - remote server: ubuntu 18.04, which comes with python 3.6.7 Playbook: #####

Show Detail

how to install rstan in ubuntu 18.04

I'm trying to instal the rstan in Ubuntu 18.04. I started with apt-get install r-cran-rstan and it showed dependence on the packages : r-cran-ggplot2 , r-cran-pkgbuild and r-cran-v8. Then while t...

Show Detail

capistrano install not working in ubuntu 18.04

I have recently updated my OS from Ubuntu 16.04 to 18.04. But now I have an issue with capistrano and ruby. Indeed, I would like to deploy a php app with capistrano. So I installed ruby with rbenv,

Show Detail

How to find and install Ubuntu 18.04 packages that are equivalent to MacOS packages

Our developers work on MacOS and the system is launched on Ubuntu 18.04. Developers note that the application server must install the following packages. brew install pkg-config cairo pango lib...

Show Detail