There is an __init__.py file at the root of the repository.
This makes it so that the pip install through git installs the library from the root of the repository instead of the ioSPI source directory, and leads to imports errors (unless one import ioSPI.ioSPI as ioSPI first, but this is not a good thing).
The solution is to delete this file and re-install the environment. Pip should then install the right version.
There is an
__init__.py
file at the root of the repository.This makes it so that the
pip install
throughgit
installs the library from the root of the repository instead of theioSPI
source directory, and leads to imports errors (unless oneimport ioSPI.ioSPI as ioSPI
first, but this is not a good thing).The solution is to delete this file and re-install the environment. Pip should then install the right version.