refer to: https://stackoverflow.com/questions/39371772/how-to-install-anaconda-on-raspberry-pi-3-model-b
{USER}: pi
Install Miniconda 3:
wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-armv7l.sh
sudo md5sum Miniconda3-latest-Linux-armv7l.sh # (optional) check md5
sudo /bin/bash Miniconda3-latest-Linux-armv7l.sh # -> change default directory to /home/pi/miniconda3
sudo nano /home/pi/.bashrc # -> add: export PATH="/home/pi/miniconda3/bin:$PATH"
sudo reboot -h now
Test:
conda
python --version
If Conda update miss permission of the directory:
sudo chown -R pi miniconda3
@loganyc1934, I got the same issue, and I followed it down the rabbit hole. I have since unistalled conda from my R Pi for other latex-related reasons, but I'm going to try to sum up what I did to get it going. Since the default conda repositories did not have blas and openblas, I had to first install the Anaconda client to be able to search the general Anaconda repositories:
conda install anaconda-client
Then I searched the extended conda respositories with:
anaconda search -t conda blas
anaconda search -t conda openblas
I'm not sure why the error code suggests searching for "blas * openblas", I couldn't get that to work with the anaconda client. It might just be an accidental type where the "blas * openblas" came from the dependencies error, and was fed directly into the "anaconda search" line.
Once I found a channel with both openblas and blas, I added that to my conda manager. the rpi channel seems like a good channel to add anyway as they have many Raspberry Pi-specific packages. But you could add different channels if you come across this issue with other packages.
conda config --add channels rpi
After the rpi channel is added, you should be able to download both openblas and blas.
conda install openblas blas
Can you install packages other than numpy?