-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Making NEST importable from Python Kernel #3
Comments
yields In the terminal I can run |
So I believe the issue is that NEST is automatically added to the python3.8 installation, but the default python in the IPyKernel is 3.9, and that one does not have NEST in the path? Well, actually, that python seems to find it when doing |
From terminal, it also works to import it using ipython: |
Another option could be to install the package through |
I finally got NEST installed properly.
![image](https://user-images.githubusercontent.com/56032114/233580933-896fb182-72e2-4140-b29b-81886931cbe4.png)
~/.venv/bin/python3 -c "import nest"
works with python, python3, and python3.9 ( which are all the python executables available in~/.venv/bin/
folder), which are the default python (i.e. what shows when doingwhich python(3)
.Nevertheless, this does not seem to work from inside the Jupyter Kernel:
![image](https://user-images.githubusercontent.com/56032114/233581926-fd3fe852-5054-4c7c-a0ba-506f0a3b8184.png)
The text was updated successfully, but these errors were encountered: