filipsPL / autowx2

The program for scheduling recordings and processing of the satellite and ground radio transmissions (like capturing of the weather APT images from NOAA satellites, voice messages from ISS, fixed time recordings of WeatherFaxes etc.) :earth_africa: :satellite:
78 stars 16 forks source link

Fixed for Raspberry Pi 3 #43

Closed SA7BNT closed 5 years ago

SA7BNT commented 5 years ago

Add armv71 (Raspberry Pi 3) & python-dev package Remove space from line 34

SA7BNT commented 5 years ago

Fixed issue arm6 to armv6

filipsPL commented 5 years ago

Also travis-ci says it doesn't work:

$ ./genpasstable.py
Traceback (most recent call last):
  File "./genpasstable.py", line 16, in <module>
    from autowx2_functions import *
  File "/home/travis/build/filipsPL/autowx2/autowx2_functions.py", line 16, in <module>
    import predict
ImportError: No module named predict
The command "./genpasstable.py" exited with 1.
SA7BNT commented 5 years ago

Also travis-ci says it doesn't work:

$ ./genpasstable.py
Traceback (most recent call last):
  File "./genpasstable.py", line 16, in <module>
    from autowx2_functions import *
  File "/home/travis/build/filipsPL/autowx2/autowx2_functions.py", line 16, in <module>
    import predict
ImportError: No module named predict
The command "./genpasstable.py" exited with 1.

Can´t work with if [ ${MACHINE_TYPE} == 'armv61' ] || [ ${MACHINE_TYPE} == 'armv7l' ]; then

Must be if [ ${MACHINE_TYPE} == 'armv6l' ] || [ ${MACHINE_TYPE} == 'armv71' ]; then

Will fix it now

filipsPL commented 5 years ago

I guess this was not the case. Please look at what uname is saying at your Pi3 system. In my case it is:

root@raspberrypi:/usr/local/bin/autowx2# uname -m
armv7l

It is armv7l with L at the end...

SA7BNT commented 5 years ago

I guess this was not the case. Please look at what uname is saying at your Pi3 system. In my case it is:

root@raspberrypi:/usr/local/bin/autowx2# uname -m
armv7l

It is armv7l with L at the end...

Yes just updated

filipsPL commented 5 years ago

Still Travis-CI fails. The problem is sudo pip. What it writes is:

If executing pip with sudo, you may want sudo's -H flag.

maybe this would be the solution?

Link to installation results: https://travis-ci.org/filipsPL/autowx2/builds/457146651#L445