Hello,
I successfully installed the linux-gpib package, and when I run the import Gpib command on python 2.7 everything happens perfectly. But now I'm trying to import the package with python 3.7.1, installed with anaconda, and import is returning me the following error:
Python 3.7.1 (default, Dec 14 2018, 19:28:38)
[GCC 7.3.0] :: Anaconda, Inc. on linux
Type "help", "copyright", "credits" or "license" for more information.
import Gpib
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'Gpib'</module></stdin>
I appreciate if someone helps me.
Update
I followed the following steps:
Get the linux-gpib source tree.
In a terminal, activate your anaconda python 3.7.1 environment.
Change the active directory to linux-gpib-user/language/python directory.
Install the python bindings by running: $ python setup.py install
Now i can import the package with python 3.7.1 installed with anaconda.