-
Notifications
You must be signed in to change notification settings - Fork 144
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
ModuleNotFoundError when importing mpu6050 #29
Comments
seems like the issue is within Python because it is working when I'm using a script that's located in the same directory as the mpu6050.py |
same issue |
@sutanu86 Did you install the package? If so, how? @CHANCELIER did you use the same python version for installing the package as for running it? |
Hi, I just released a version that might help for different platform: Jetson nano, raspberry pi, Beaglebone, pyboard, ODROID and more. It is based on mr Tijn package. https://github.com/romybompart/py_imu_mpu6050 Now that is working in different platform I will add self_calibration functions and |
git clone https://github.com/Tijndagamer/mpu6050.git cd mpu6050 sudo python setup.py install |
Hello, you can see what is the directory that save the files when you install the mpu6050, for example in my case add in ./.local/lib/python2.7/site-packages... if you run you can try to run with python2 <filename.py> |
This didn't work for me. "ModuleNotFoundError: No module named 'smbus'" python3-smbus is installed |
the smbus installation worked, I was able to test the i2c and that works. I also got no errors when installing through pip install. However as soon as I try to run a script in Python3, it says that:
Traceback (most recent call last):
File "/home/pi/Documents/gyrompu.py", line 1, in
import mpu6050 as mpu6050
ModuleNotFoundError: No module named 'mpu6050'
The text was updated successfully, but these errors were encountered: