Python pandas install on Beaglebone Black

Hi all,
I am trying to install the python library pandas on the beaglebone black with out success. I am running 4.9.45-ti-r5 on the wifi version.
I tried with python2.7 and python3.5.3 with the following install command:

Running setup.py bdist_wheel for pandas … |

But then it keeps running setup.py for at least 2 hours, then I interrupted the process

  • apt-get install python3-pandas (for python 3) and the result is the following:
    Reading package lists… Done
    Building dependency tree
    Reading state information… Done
    Some packages could not be installed. This may mean that you have
    requested an impossible situation or if you are using the unstable
    distribution that some required packages have not yet been created
    or been moved out of Incoming.
    The following information may help to resolve the situation:

The following packages have unmet dependencies:
python3-pandas : Depends: python3-pandas-lib (>= 0.19.2-5.1) but it is not installable
Recommends: python3-scipy but it is not going to be installed
Recommends: python3-matplotlib but it is not going to be installed
Recommends: python3-numexpr but it is not going to be installed
Recommends: python3-tables but it is not going to be installed
Recommends: python3-bs4 but it is not going to be installed
Recommends: python3-html5lib but it is not going to be installed
Recommends: python3-lxml but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

And I do not know how to install a “not installable” dependency

I know that it is doable thanks to this wiki buy Mark A. Yoder but I am not successful yet, can anyone help me on this?
Thanks

Pierrick

Sir, I have problem same as you…
Do you have solutions for this?
thanks a lot.

Hi,
Yes I found a solution yesterday, using this image Debian 9.3 2018-03-05 4GB SD IoT
I used this post to install miniconda on the beaglebone :

https://stackoverflow.com/questions/39371772/how-to-install-anaconda-on-raspberry-pi-3-model-b
Then conda install pandas installs pandas version 0.16.2 which is quite old but its enough for my application

Thanks
Pierrick