-
Notifications
You must be signed in to change notification settings - Fork 12
Description
I'm using the PiCarV V2 with RaspberryPi 1B+, getting this issue:
pi@raspberrypi:/opt/SunFounder_Dragit/Dragit $ sudo ./start
Server running
Performing system checks...
DEBUG "front_wheels.py": Set debug off
DEBUG "front_wheels.py": Set wheel debug off
DEBUG "Servo.py": Set debug off
DEBUG "back_wheels.py": Set debug off
DEBUG "TB6612.py": Set debug off
DEBUG "TB6612.py": Set debug off
DEBUG "PCA9685.py": Set debug off
Init GPIO17 success
Init GPIO18 success
Init GPIO27 success
Init GPIO22 success
Init GPIO23 success
Init GPIO24 success
Init GPIO25 success
Init GPIO4 success
Init GPIO5 success
Init GPIO6 success
Init GPIO13 success
Init GPIO19 success
Init GPIO26 success
Init GPIO12 success
Init GPIO16 success
Init GPIO20 success
Init GPIO21 success
DEBUG "front_wheels.py": Set debug off
DEBUG "front_wheels.py": Set wheel debug off
DEBUG "Servo.py": Set debug off
DEBUG "back_wheels.py": Set debug off
DEBUG "TB6612.py": Set debug off
DEBUG "TB6612.py": Set debug off
DEBUG "PCA9685.py": Set debug off
No module named pismart.pismart
Unhandled exception in thread started by <function wrapper at 0xb5dbdab0>
Traceback (most recent call last):
File "/usr/local/lib/python2.7/dist-packages/django/utils/autoreload.py", line 228, in wrapper
fn(*args, **kwargs)
File "/usr/local/lib/python2.7/dist-packages/django/core/management/commands/runserver.py", line 124, in inner_run
self.check(display_num_errors=True)
File "/usr/local/lib/python2.7/dist-packages/django/core/management/base.py", line 359, in check
include_deployment_checks=include_deployment_checks,
File "/usr/local/lib/python2.7/dist-packages/django/core/management/base.py", line 346, in _run_checks
return checks.run_checks(**kwargs)
File "/usr/local/lib/python2.7/dist-packages/django/core/checks/registry.py", line 81, in run_checks
new_errors = check(app_configs=app_configs)
File "/usr/local/lib/python2.7/dist-packages/django/core/checks/urls.py", line 16, in check_url_config
return check_resolver(resolver)
File "/usr/local/lib/python2.7/dist-packages/django/core/checks/urls.py", line 26, in check_resolver
return check_method()
File "/usr/local/lib/python2.7/dist-packages/django/urls/resolvers.py", line 256, in check
for pattern in self.url_patterns:
File "/usr/local/lib/python2.7/dist-packages/django/utils/functional.py", line 35, in get
res = instance.dict[self.name] = self.func(instance)
File "/usr/local/lib/python2.7/dist-packages/django/urls/resolvers.py", line 407, in url_patterns
patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
File "/usr/local/lib/python2.7/dist-packages/django/utils/functional.py", line 35, in get
res = instance.dict[self.name] = self.func(instance)
File "/usr/local/lib/python2.7/dist-packages/django/urls/resolvers.py", line 400, in urlconf_module
return import_module(self.urlconf_name)
File "/usr/lib/python2.7/importlib/init.py", line 37, in import_module
import(name)
File "/opt/SunFounder_Dragit/Dragit/Dragit/urls.py", line 22, in
from modules import views as modules_views
File "/opt/SunFounder_Dragit/Dragit/Dragit/modules/views.py", line 25, in
from Dragit.libs.modules.rpi_time import DS1302 as DS1302
File "/opt/SunFounder_Dragit/Dragit/Dragit/libs/modules/rpi_time.py", line 3, in
import ds1302
ImportError: libwiringPi.so: cannot open shared object file: No such file or directory
What is wrong?
Best Regards