I followed the instructions to install netZooPy via:
However, if I try
from netZooPy.cobra import *
I get
---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
Cell In[3], [line 1](vscode-notebook-cell:?execution_count=3&line=1)
----> [1](vscode-notebook-cell:?execution_count=3&line=1) from netZooPy.cobra import *
ModuleNotFoundError: No module named 'netZooPy.cobra'
While if I try
from netZooPy.netZooPy.cobra import *
I get
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
Cell In[4], [line 1](vscode-notebook-cell:?execution_count=4&line=1)
----> [1](vscode-notebook-cell:?execution_count=4&line=1) from netZooPy.netZooPy.cobra import *
File /cephfs/home/mfiumara/netZooPy/netZooPy/__init__.py:3
1 from __future__ import absolute_import
----> [3](https://vscode-remote+ssh-002dremote-002bblade25-002esf-002empg-002ede.vscode-resource.vscode-cdn.net/cephfs/home/mfiumara/netZooPy/netZooPy/__init__.py:3) from netZooPy import cobra
4 from netZooPy import panda
5 from netZooPy import puma
ImportError: cannot import name 'cobra' from 'netZooPy' (unknown location)
I followed the instructions to install netZooPy via:
Inside a venv.
However, if I try
I get
While if I try
I get