-
-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Raspberry PI 1 (armv6l) conda modules missing #46
Comments
Hi Pramuspl, I now made prebuilt packages for Raspberry PI 2&3 for conda (armv7l). And just now I saw, that you have a Raspberry Pi 1 (armv6l)... I'll leave this open in case someone else needs armv6l too. |
I went the hard (not recommended) way and it worked. |
'conda install -c poehlmann python-seabreeze' does not work. The package is located in the User Channel. Instead, try: conda install --channel https://conda.anaconda.org/poehlmann python-seabreeze This worked for me (June 20, 2017) on a Beaglebone Black Wireless running Debian Jessie (which is similar to Raspbian on the Raspberry Pi 3B), running Berryconda3 and conda 4.3.22-py35_0 (the current update). Nice work on this Mr. Poehlmann. |
@alantate thanks! |
@ap-- I got a raspberry pie 1 and I'd like to try building a conda package for it. Could you please share the recipe you used for |
@ap-- Thanks! Also I just remembered the recipe is actually included in the package. By the way, I noticed two differences between the recipe from the repo and the one from the package: diff --git a/recipe/build.sh b/recipe/build.sh
index 8ca252b..715e3b1 100644
--- a/recipe/build.sh
+++ b/recipe/build.sh
@@ -6,7 +6,7 @@ if [ "$(uname)" == "Darwin" ]; then
elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then
echo "Platform: Linux"
# we need libusb headers on circleci
- yum install -y libusb-devel
+ # yum install -y libusb-devel
make logger=0 lib/libseabreeze${SHLIB_EXT}
fi
cd ../../..
diff --git a/recipe/meta.yaml b/recipe/meta.yaml
index 2d502b9..6e44353 100644
--- a/recipe/meta.yaml
+++ b/recipe/meta.yaml
@@ -16,7 +16,6 @@ requirements:
build:
- python
- setuptools
- - toolchain
- cython
run:
- python Maybe this should appear in another branch? |
Oh, yes. The recipe in the repository was written for conda-forge which is using circle-ci for compiling the linux packages. |
I tried to install pyseabreeze using Miniconda (full Anaconda is not available for Raspberry Pi) but I can never get past
conda install -c poehlmann python-seabreeze
- it says theres no such package.I'm running Raspbian on Raspberry Pi B+, Python 2.7.
The text was updated successfully, but these errors were encountered: