Error No module named Biliopixel

Hi everyone,

I am having a problem running Bibliopixel with the Adafruit RGB matrix HAT.

After the correct installation of every component and modules : Adafruit and Bibliopixel, i have a message error that “no module named Bibliopixel”

what i am doing wrong ? and what i have to do to make them work together ?

many thanks

Matthieu

Can you please include the code you are trying to run and the full stack trace with the error you are getting. We need more details to be able to track down what the problem actually is.

···

On Thursday, October 5, 2017 at 11:53:58 AM UTC-4, Matthieu Girard wrote:

Hi everyone,

I am having a problem running Bibliopixel with the Adafruit RGB matrix HAT.

After the correct installation of every component and modules : Adafruit and Bibliopixel, i have a message error that “no module named Bibliopixel”

what i am doing wrong ? and what i have to do to make them work together ?

many thanks

Matthieu

Sure,

Here is a sample code i wanted to run : this is the sample give in the github :

from bibliopixel import *

import bibliopixel.colors as colors

from adamatrix import DriverAdaMatrix

driver = DriverAdaMatrix(rows=32, chain=2)

driver.SetPWMBits(4)

led = LEDMatrix(driver, 32, 32, serpentine=False)

I made the modification of the ada-matrix file name because of the dash.

but i have this error instead:

Traceback (most recent call last):

File “test.py”, line 1, in

from bibliopixel import *

ImportError: No module named bibliopixel

please i need help. i don’t know what to do.

Many Thanks

···

Le jeudi 5 octobre 2017 17:56:34 UTC+2, Adam Haile a écrit :

Can you please include the code you are trying to run and the full stack trace with the error you are getting. We need more details to be able to track down what the problem actually is.

On Thursday, October 5, 2017 at 11:53:58 AM UTC-4, Matthieu Girard wrote:

Hi everyone,

I am having a problem running Bibliopixel with the Adafruit RGB matrix HAT.

After the correct installation of every component and modules : Adafruit and Bibliopixel, i have a message error that “no module named Bibliopixel”

what i am doing wrong ? and what i have to do to make them work together ?

many thanks

Matthieu

A couple things:

A) That example is very old.

Correct code should be


from bibliopixel import *

import bibliopixel.colors as colors

from adamatrix import DriverAdaMatrix

driver = DriverAdaMatrix(rows=32, chain=2)

driver.SetPWMBits(4)

led = Matrix(driver, 32, 32, serpentine=False)

Mainly, LEDMatrix was renamed in BiblioPixel 3.x

B) I’m guessing you are trying to run BiblioPixel in python 2? Or maybe it’s just not installed. Follow the instructions here: https://github.com/ManiacalLabs/BiblioPixel/wiki/Installation

You must use Python 3 for the latest BiblioPixel to work.

···

On Thu, Oct 5, 2017 at 12:17 PM, Matthieu Girard girard.matthieu51@gmail.com wrote:

Sure,

Here is a sample code i wanted to run : this is the sample give in the github :

from bibliopixel import *

import bibliopixel.colors as colors

from adamatrix import DriverAdaMatrix

driver = DriverAdaMatrix(rows=32, chain=2)

driver.SetPWMBits(4)

led = LEDMatrix(driver, 32, 32, serpentine=False)

I made the modification of the ada-matrix file name because of the dash.

but i have this error instead:

Traceback (most recent call last):

File “test.py”, line 1, in

from bibliopixel import *

ImportError: No module named bibliopixel

please i need help. i don’t know what to do.

Many Thanks

Le jeudi 5 octobre 2017 17:56:34 UTC+2, Adam Haile a écrit :

Can you please include the code you are trying to run and the full stack trace with the error you are getting. We need more details to be able to track down what the problem actually is.

On Thursday, October 5, 2017 at 11:53:58 AM UTC-4, Matthieu Girard wrote:

Hi everyone,

I am having a problem running Bibliopixel with the Adafruit RGB matrix HAT.

After the correct installation of every component and modules : Adafruit and Bibliopixel, i have a message error that “no module named Bibliopixel”

what i am doing wrong ? and what i have to do to make them work together ?

many thanks

Matthieu

You received this message because you are subscribed to the Google Groups “Maniacal Labs Users” group.

To unsubscribe from this group and stop receiving emails from it, send an email to maniacal-labs-users+unsubscribe@googlegroups.com.

To post to this group, send email to maniacal-labs-users@googlegroups.com.

To view this discussion on the web visit https://groups.google.com/d/msgid/maniacal-labs-users/d9d494fc-b26e-487b-9a5c-2e443cc67e33%40googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

Thank you for your answer,

i have installed Bibliopixel the way that is show in github --> pip3 install BiblioPixel , but when i try to list all modules with the command : pip freeze, bibliopixel does not appear. Is there a way to install it manually ?

and of course i run it with python3.

do you have any simple example to see if my code is right ?

thank you again.

···

Le jeudi 5 octobre 2017 17:53:58 UTC+2, Matthieu Girard a écrit :

Hi everyone,

I am having a problem running Bibliopixel with the Adafruit RGB matrix HAT.

After the correct installation of every component and modules : Adafruit and Bibliopixel, i have a message error that “no module named Bibliopixel”

what i am doing wrong ? and what i have to do to make them work together ?

many thanks

Matthieu

You need to run “pip3 freeze”. Regular pip is for python2, not python 3.
If you have bibliopixel installed, run bibliopixel --version which should tell you if it’s actually present on the system.

If the above commands work and you get the same error then not sure what to tell you… somehow you are still not calling the right version of python which has BiblioPixel installed.

···

On Thu, Oct 5, 2017 at 12:57 PM, Matthieu Girard girard.matthieu51@gmail.com wrote:

Thank you for your answer,

i have installed Bibliopixel the way that is show in github --> pip3 install BiblioPixel , but when i try to list all modules with the command : pip freeze, bibliopixel does not appear. Is there a way to install it manually ?

and of course i run it with python3.

do you have any simple example to see if my code is right ?

thank you again.

Le jeudi 5 octobre 2017 17:53:58 UTC+2, Matthieu Girard a écrit :

Hi everyone,

I am having a problem running Bibliopixel with the Adafruit RGB matrix HAT.

After the correct installation of every component and modules : Adafruit and Bibliopixel, i have a message error that “no module named Bibliopixel”

what i am doing wrong ? and what i have to do to make them work together ?

many thanks

Matthieu

You received this message because you are subscribed to the Google Groups “Maniacal Labs Users” group.

To unsubscribe from this group and stop receiving emails from it, send an email to maniacal-labs-users+unsubscribe@googlegroups.com.

To post to this group, send email to maniacal-labs-users@googlegroups.com.

To view this discussion on the web visit https://groups.google.com/d/msgid/maniacal-labs-users/a7a98b79-24d7-42c8-a411-65462d6df5e2%40googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

thank again.

So pip3 freeze listed BiblioPixel 3.3.3 Woohoo !

But each time i want to run my little piece of code with sudo python3 test.py i have always the same error… this is very sad.

I wanted to have a very simple and easy to use library for my LED matrix to start a new project. :frowning: I think i have to do the hard way…

···

Le jeudi 5 octobre 2017 17:53:58 UTC+2, Matthieu Girard a écrit :

Hi everyone,

I am having a problem running Bibliopixel with the Adafruit RGB matrix HAT.

After the correct installation of every component and modules : Adafruit and Bibliopixel, i have a message error that “no module named Bibliopixel”

what i am doing wrong ? and what i have to do to make them work together ?

many thanks

Matthieu

Don’t loose hope yet :slight_smile:
Did you install it in a python virtual environment? Running as sudo puts you outside the context of that environment where BiblioPixel would not exist.

You can run sudo $(which python3) test.py while inside the venv to run the correct python path if that’s the case.

Right now I cannot think of anything else that it would be…

···

On Thu, Oct 5, 2017 at 1:24 PM, Matthieu Girard girard.matthieu51@gmail.com wrote:

thank again.

So pip3 freeze listed BiblioPixel 3.3.3 Woohoo !

But each time i want to run my little piece of code with sudo python3 test.py i have always the same error… this is very sad.

I wanted to have a very simple and easy to use library for my LED matrix to start a new project. :frowning: I think i have to do the hard way…

Le jeudi 5 octobre 2017 17:53:58 UTC+2, Matthieu Girard a écrit :

Hi everyone,

I am having a problem running Bibliopixel with the Adafruit RGB matrix HAT.

After the correct installation of every component and modules : Adafruit and Bibliopixel, i have a message error that “no module named Bibliopixel”

what i am doing wrong ? and what i have to do to make them work together ?

many thanks

Matthieu

You received this message because you are subscribed to the Google Groups “Maniacal Labs Users” group.

To unsubscribe from this group and stop receiving emails from it, send an email to maniacal-labs-users+unsubscribe@googlegroups.com.

To post to this group, send email to maniacal-labs-users@googlegroups.com.

To view this discussion on the web visit https://groups.google.com/d/msgid/maniacal-labs-users/5d745a35-da08-4787-bc13-32e303c5f050%40googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

i am not very aware of Venv, i just installed Bibliopixel on a fresh install of Raspian stretch after all update/upgrade done on one of a brand new raspi 3 B out of the box.
and i ve test on a zero W, and i have the same message error.

···

Le jeudi 5 octobre 2017 19:30:44 UTC+2, Adam Haile a écrit :

Don’t loose hope yet :slight_smile:
Did you install it in a python virtual environment? Running as sudo puts you outside the context of that environment where BiblioPixel would not exist.

You can run sudo $(which python3) test.py while inside the venv to run the correct python path if that’s the case.

Right now I cannot think of anything else that it would be…

On Thu, Oct 5, 2017 at 1:24 PM, Matthieu Girard girard.m...@gmail.com wrote:

thank again.

So pip3 freeze listed BiblioPixel 3.3.3 Woohoo !

But each time i want to run my little piece of code with sudo python3 test.py i have always the same error… this is very sad.

I wanted to have a very simple and easy to use library for my LED matrix to start a new project. :frowning: I think i have to do the hard way…

Le jeudi 5 octobre 2017 17:53:58 UTC+2, Matthieu Girard a écrit :

Hi everyone,

I am having a problem running Bibliopixel with the Adafruit RGB matrix HAT.

After the correct installation of every component and modules : Adafruit and Bibliopixel, i have a message error that “no module named Bibliopixel”

what i am doing wrong ? and what i have to do to make them work together ?

many thanks

Matthieu

You received this message because you are subscribed to the Google Groups “Maniacal Labs Users” group.

To unsubscribe from this group and stop receiving emails from it, send an email to maniacal-labs-users+unsubscribe@googlegroups.com.

To post to this group, send email to maniacal-...@googlegroups.com.

To view this discussion on the web visit https://groups.google.com/d/msgid/maniacal-labs-users/5d745a35-da08-4787-bc13-32e303c5f050%40googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

Ok… there’s clearly some little detail being missed then.

Two things to try out:

A) Please send me the full output of sudo pip3 freeze

B) Try this test script:


from bibliopixel import *

import bibliopixel.colors as colors

from bibliopixel.drivers.dummy_driver import Dummy

driver = Dummy(1024)

led = Matrix(driver, 32, 32, serpentine=False)

This is confirmed working on my Pi. I don’t have the matrix hat available to test out at the moment but this looks like it’s not related to the driver… so if this still shows the error it will give me a better idea. If it does error please include full command line call and the console output.

···

On Thu, Oct 5, 2017 at 1:38 PM, Matthieu Girard girard.matthieu51@gmail.com wrote:

i am not very aware of Venv, i just installed Bibliopixel on a fresh install of Raspian stretch after all update/upgrade done on one of a brand new raspi 3 B out of the box.
and i ve test on a zero W, and i have the same message error.

Le jeudi 5 octobre 2017 19:30:44 UTC+2, Adam Haile a écrit :

Don’t loose hope yet :slight_smile:
Did you install it in a python virtual environment? Running as sudo puts you outside the context of that environment where BiblioPixel would not exist.

You can run sudo $(which python3) test.py while inside the venv to run the correct python path if that’s the case.

Right now I cannot think of anything else that it would be…

On Thu, Oct 5, 2017 at 1:24 PM, Matthieu Girard girard.m...@gmail.com wrote:

thank again.

So pip3 freeze listed BiblioPixel 3.3.3 Woohoo !

But each time i want to run my little piece of code with sudo python3 test.py i have always the same error… this is very sad.

I wanted to have a very simple and easy to use library for my LED matrix to start a new project. :frowning: I think i have to do the hard way…

Hi everyone,

I am having a problem running Bibliopixel with the Adafruit RGB matrix HAT.

After the correct installation of every component and modules : Adafruit and Bibliopixel, i have a message error that “no module named Bibliopixel”

what i am doing wrong ? and what i have to do to make them work together ?

many thanks

Matthieu

Le jeudi 5 octobre 2017 17:53:58 UTC+2, Matthieu Girard a écrit :

You received this message because you are subscribed to the Google Groups “Maniacal Labs Users” group.

To unsubscribe from this group and stop receiving emails from it, send an email to maniacal-labs-users+unsubscribe@googlegroups.com.

To post to this group, send email to maniacal-...@googlegroups.com.

To view this discussion on the web visit https://groups.google.com/d/msgid/maniacal-labs-users/5d745a35-da08-4787-bc13-32e303c5f050%40googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

You received this message because you are subscribed to the Google Groups “Maniacal Labs Users” group.

To unsubscribe from this group and stop receiving emails from it, send an email to maniacal-labs-users+unsubscribe@googlegroups.com.

To post to this group, send email to maniacal-labs-users@googlegroups.com.

To view this discussion on the web visit https://groups.google.com/d/msgid/maniacal-labs-users/0a74f490-246a-4021-a8e3-ca8cdfdab1f3%40googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

thanks

A)

here is the list for pip3 freeze

automationhat==0.0.4

beautifulsoup4==4.6.0

BiblioPixel==3.3.3

BiblioPixelAnimations==3.20170913.13846

BiblioPixelTriggers==1.0.1

blinker==1.3

blinkt==0.1.0

Cap1xxx==0.1.3

certifi==2017.7.27.1

chardet==3.0.4

click==6.7

colorama==0.3.7

croniter==0.3.19

cryptography==1.7.1

drumhat==0.0.5

envirophat==0.0.6

ExplorerHAT==0.4.2

Flask==0.12.2

fourletterphat==0.0.2

gitdb2==2.0.3

GitPython==2.1.7

gpiozero==1.4.0

idna==2.6

itsdangerous==0.24

jedi==0.10.2

Jinja2==2.9.6

keyring==10.1

keyrings.alt==1.3

loady==1.6.6

MarkupSafe==1.0

mcpi==0.1.1

microdotphat==0.1.3

mote==0.0.3

motephat==0.0.2

numpy==1.12.1

oauthlib==2.0.1

pgzero==1.1

phatbeat==0.0.2

pianohat==0.0.5

picamera==1.13

picraft==1.0

piglow==1.2.4

pigpio==1.38

Pillow==4.0.0

pyasn1==0.1.9

pycrypto==2.6.1

pygame==1.9.3

pygobject==3.22.0

pyinotify==0.9.6

PyJWT==1.4.2

pyOpenSSL==16.2.0

pyserial==3.2.1

python-apt==1.1.0b5

python-dateutil==2.6.1

pyxdg==0.25

rainbowhat==0.0.2

requests==2.18.4

requests-oauthlib==0.7.0

RPi.GPIO==0.6.3

RTIMULib==7.2.1

scrollphat==0.0.7

scrollphathd==1.0.1

SecretStorage==2.3.1

sense-emu==1.0

sense-hat==2.2.0

simplejson==3.10.0

six==1.11.0

skywriter==0.0.7

smmap2==2.0.3

sn3218==1.2.7

spidev==3.0

thonny==2.1.10

touchphat==0.0.1

twython==3.4.0

urllib3==1.22

Werkzeug==0.12.2

B)

i have different result depend if i “sudo” or not the python3 command:

with sudo python3 test.py --> the error is still the same

without : python3 test.py --> the error is the following

INFO - matrix - Auto generating coordinate map. Use make_matrix_coord_map directly if more control needed.

I am woking on a 64*32 RGB matrix led panel, is that why i have this error ?

···

Le jeudi 5 octobre 2017 19:47:58 UTC+2, Adam Haile a écrit :

Ok… there’s clearly some little detail being missed then.

Two things to try out:

A) Please send me the full output of sudo pip3 freeze

B) Try this test script:

from bibliopixel import *

import bibliopixel.colors as colors

from bibliopixel.drivers.dummy_driver import Dummy

driver = Dummy(1024)

led = Matrix(driver, 32, 32, serpentine=False)

This is confirmed working on my Pi. I don’t have the matrix hat available to test out at the moment but this looks like it’s not related to the driver… so if this still shows the error it will give me a better idea. If it does error please include full command line call and the console output.

On Thu, Oct 5, 2017 at 1:38 PM, Matthieu Girard girard.m...@gmail.com wrote:

i am not very aware of Venv, i just installed Bibliopixel on a fresh install of Raspian stretch after all update/upgrade done on one of a brand new raspi 3 B out of the box.
and i ve test on a zero W, and i have the same message error.

Le jeudi 5 octobre 2017 19:30:44 UTC+2, Adam Haile a écrit :

Don’t loose hope yet :slight_smile:
Did you install it in a python virtual environment? Running as sudo puts you outside the context of that environment where BiblioPixel would not exist.

You can run sudo $(which python3) test.py while inside the venv to run the correct python path if that’s the case.

Right now I cannot think of anything else that it would be…

On Thu, Oct 5, 2017 at 1:24 PM, Matthieu Girard girard.m...@gmail.com wrote:

thank again.

So pip3 freeze listed BiblioPixel 3.3.3 Woohoo !

But each time i want to run my little piece of code with sudo python3 test.py i have always the same error… this is very sad.

I wanted to have a very simple and easy to use library for my LED matrix to start a new project. :frowning: I think i have to do the hard way…

Hi everyone,

I am having a problem running Bibliopixel with the Adafruit RGB matrix HAT.

After the correct installation of every component and modules : Adafruit and Bibliopixel, i have a message error that “no module named Bibliopixel”

what i am doing wrong ? and what i have to do to make them work together ?

many thanks

Matthieu

Le jeudi 5 octobre 2017 17:53:58 UTC+2, Matthieu Girard a écrit :

You received this message because you are subscribed to the Google Groups “Maniacal Labs Users” group.

To unsubscribe from this group and stop receiving emails from it, send an email to maniacal-labs-users+unsubscribe@googlegroups.com.

To post to this group, send email to maniacal-...@googlegroups.com.

To view this discussion on the web visit https://groups.google.com/d/msgid/maniacal-labs-users/5d745a35-da08-4787-bc13-32e303c5f050%40googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

You received this message because you are subscribed to the Google Groups “Maniacal Labs Users” group.

To unsubscribe from this group and stop receiving emails from it, send an email to maniacal-labs-users+unsubscribe@googlegroups.com.

To post to this group, send email to maniacal-...@googlegroups.com.

To view this discussion on the web visit https://groups.google.com/d/msgid/maniacal-labs-users/0a74f490-246a-4021-a8e3-ca8cdfdab1f3%40googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

Ok… without sudo, that’s not an error.
As it is, you test script doesn’t actually run an animation… it just loads the drivers.Now you need to run an animation.

···

On Thu, Oct 5, 2017 at 2:15 PM, Matthieu Girard girard.matthieu51@gmail.com wrote:

thanks

A)

here is the list for pip3 freeze

automationhat==0.0.4

beautifulsoup4==4.6.0

BiblioPixel==3.3.3

BiblioPixelAnimations==3.20170913.13846

BiblioPixelTriggers==1.0.1

blinker==1.3

blinkt==0.1.0

Cap1xxx==0.1.3

certifi==2017.7.27.1

chardet==3.0.4

click==6.7

colorama==0.3.7

croniter==0.3.19

cryptography==1.7.1

drumhat==0.0.5

envirophat==0.0.6

ExplorerHAT==0.4.2

Flask==0.12.2

fourletterphat==0.0.2

gitdb2==2.0.3

GitPython==2.1.7

gpiozero==1.4.0

idna==2.6

itsdangerous==0.24

jedi==0.10.2

Jinja2==2.9.6

keyring==10.1

keyrings.alt==1.3

loady==1.6.6

MarkupSafe==1.0

mcpi==0.1.1

microdotphat==0.1.3

mote==0.0.3

motephat==0.0.2

numpy==1.12.1

oauthlib==2.0.1

pgzero==1.1

phatbeat==0.0.2

pianohat==0.0.5

picamera==1.13

picraft==1.0

piglow==1.2.4

pigpio==1.38

Pillow==4.0.0

pyasn1==0.1.9

pycrypto==2.6.1

pygame==1.9.3

pygobject==3.22.0

pyinotify==0.9.6

PyJWT==1.4.2

pyOpenSSL==16.2.0

pyserial==3.2.1

python-apt==1.1.0b5

python-dateutil==2.6.1

pyxdg==0.25

rainbowhat==0.0.2

requests==2.18.4

requests-oauthlib==0.7.0

RPi.GPIO==0.6.3

RTIMULib==7.2.1

scrollphat==0.0.7

scrollphathd==1.0.1

SecretStorage==2.3.1

sense-emu==1.0

sense-hat==2.2.0

simplejson==3.10.0

six==1.11.0

skywriter==0.0.7

smmap2==2.0.3

sn3218==1.2.7

spidev==3.0

thonny==2.1.10

touchphat==0.0.1

twython==3.4.0

urllib3==1.22

Werkzeug==0.12.2

B)

i have different result depend if i “sudo” or not the python3 command:

with sudo python3 test.py --> the error is still the same

without : python3 test.py --> the error is the following

INFO - matrix - Auto generating coordinate map. Use make_matrix_coord_map directly if more control needed.

I am woking on a 64*32 RGB matrix led panel, is that why i have this error ?

Le jeudi 5 octobre 2017 19:47:58 UTC+2, Adam Haile a écrit :

Ok… there’s clearly some little detail being missed then.

Two things to try out:

A) Please send me the full output of sudo pip3 freeze

B) Try this test script:

from bibliopixel import *

import bibliopixel.colors as colors

from bibliopixel.drivers.dummy_driver import Dummy

driver = Dummy(1024)

led = Matrix(driver, 32, 32, serpentine=False)

This is confirmed working on my Pi. I don’t have the matrix hat available to test out at the moment but this looks like it’s not related to the driver… so if this still shows the error it will give me a better idea. If it does error please include full command line call and the console output.

On Thu, Oct 5, 2017 at 1:38 PM, Matthieu Girard girard.m...@gmail.com wrote:

i am not very aware of Venv, i just installed Bibliopixel on a fresh install of Raspian stretch after all update/upgrade done on one of a brand new raspi 3 B out of the box.
and i ve test on a zero W, and i have the same message error.

Le jeudi 5 octobre 2017 19:30:44 UTC+2, Adam Haile a écrit :

Don’t loose hope yet :slight_smile:
Did you install it in a python virtual environment? Running as sudo puts you outside the context of that environment where BiblioPixel would not exist.

You can run sudo $(which python3) test.py while inside the venv to run the correct python path if that’s the case.

Right now I cannot think of anything else that it would be…

On Thu, Oct 5, 2017 at 1:24 PM, Matthieu Girard girard.m...@gmail.com wrote:

thank again.

So pip3 freeze listed BiblioPixel 3.3.3 Woohoo !

But each time i want to run my little piece of code with sudo python3 test.py i have always the same error… this is very sad.

I wanted to have a very simple and easy to use library for my LED matrix to start a new project. :frowning: I think i have to do the hard way…

Hi everyone,

I am having a problem running Bibliopixel with the Adafruit RGB matrix HAT.

After the correct installation of every component and modules : Adafruit and Bibliopixel, i have a message error that “no module named Bibliopixel”

what i am doing wrong ? and what i have to do to make them work together ?

many thanks

Matthieu

Le jeudi 5 octobre 2017 17:53:58 UTC+2, Matthieu Girard a écrit :

You received this message because you are subscribed to the Google Groups “Maniacal Labs Users” group.

To unsubscribe from this group and stop receiving emails from it, send an email to maniacal-labs-users+unsubscribe@googlegroups.com.

To post to this group, send email to maniacal-...@googlegroups.com.

To view this discussion on the web visit https://groups.google.com/d/msgid/maniacal-labs-users/5d745a35-da08-4787-bc13-32e303c5f050%40googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

You received this message because you are subscribed to the Google Groups “Maniacal Labs Users” group.

To unsubscribe from this group and stop receiving emails from it, send an email to maniacal-labs-users+unsubscribe@googlegroups.com.

To post to this group, send email to maniacal-...@googlegroups.com.

To view this discussion on the web visit https://groups.google.com/d/msgid/maniacal-labs-users/0a74f490-246a-4021-a8e3-ca8cdfdab1f3%40googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

You received this message because you are subscribed to the Google Groups “Maniacal Labs Users” group.

To unsubscribe from this group and stop receiving emails from it, send an email to maniacal-labs-users+unsubscribe@googlegroups.com.

To post to this group, send email to maniacal-labs-users@googlegroups.com.

To view this discussion on the web visit https://groups.google.com/d/msgid/maniacal-labs-users/82e9b404-da72-482c-b6ad-99f3121ed5de%40googlegroups.com.

For more options, visit https://groups.google.com/d/optout.