CanberraUAV / cuav

CanberraUAV OBC code
GNU General Public License v3.0
22 stars 23 forks source link

Need to update install instructions #62

Open rmackay9 opened 1 year ago

rmackay9 commented 1 year ago

When I tried to follow the install instructions for Ubuntu (on WSL2) here I ran into the following errors

When attempting to run, "python geosearch.py " the application started but this error appeared in the console, "could not find module piexif" so maybe we also need, "pip3 install --upgrade piexif"

rmackay9 commented 1 year ago

There may also be an issue when using Ubuntu 22.x that "python-wxgtk3.0" is not found.

monkeypants commented 1 year ago

Same also with Debian 10 (buster), which I'm pretty sure is what I used to run it with. I just tried to get this up and running with buster in a docker container and I've hit a few other snags too:

FROM python:2.7                                                                 

RUN apt-get update && \
   apt-get install -y \
   python-pip libusb-1.0.0-dev \
   libdc1394-22-dev \
   libjpeg62-turbo-dev \
   cmake \
   python-opencv python-wxgtk3.0 \
   && rm -rf /var/lib/apt/lists/*

RUN apt-get install -y build-essential                
#RUN apt-get install -y qtbase5-dev  # no joy, hmm
#RUN apt-cache search qt  # no joy! source.list problem?
RUN cat /etc/os-release  # definitely buster

RUN pip install --upgrade pip
RUN pip install numpy future colored==1.3.4 opencv-python==3.4.0.14
RUN pip install cuav