You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to run this tool with M1 MacBook on Mac OS. Unfortunately, it did not work.
Installation via conda install -c bioconda colord shows error:
Collecting package metadata (current_repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Collecting package metadata (repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
PackagesNotFoundError: The following packages are not available from current channels:
- colord
Current channels:
- https://conda.anaconda.org/bioconda/osx-arm64
- https://conda.anaconda.org/bioconda/noarch
- https://repo.anaconda.com/pkgs/main/osx-arm64
- https://repo.anaconda.com/pkgs/main/noarch
- https://repo.anaconda.com/pkgs/r/osx-arm64
- https://repo.anaconda.com/pkgs/r/noarch
- https://conda.anaconda.org/conda-forge/osx-arm64
- https://conda.anaconda.org/conda-forge/noarch
To search for alternate channels that may provide the conda package you're
looking for, navigate to
https://anaconda.org
and use the search bar at the top of the page.
I decided to try to compile it by myself. brew install gcc@10 also leads to the error:
(base) alexey@Alexeys-MacBook-Pro:~$ brew install gcc@10
gcc@10: The x86_64 architecture is required for this software.
Error: gcc@10: An unsatisfied requirement failed this build.
I managed to install gcc and edit the makefile to find and use it. But finally I've got a compilation error:
It seems the problem is because of using SSE commands which are implemented only under x64/x86 architecture. I think a possible solution is sse2neon but I am not sure it's the best and universal solution.
Later I can check using of this tool under ARM Linux.
The text was updated successfully, but these errors were encountered:
oxygen311
changed the title
ARM Architecture support (Apple Silicon)
ARM Architecture Support (Apple Silicon)
Feb 28, 2023
thanks! We are working on adding support for ARM to our software, but I'm not able to promise when it will be ready for this project. We will do our best.
Hello!
I tried to run this tool with M1 MacBook on Mac OS. Unfortunately, it did not work.
Installation via
conda install -c bioconda colord
shows error:I decided to try to compile it by myself.
brew install gcc@10
also leads to the error:I managed to install gcc and edit the makefile to find and use it. But finally I've got a compilation error:
It seems the problem is because of using SSE commands which are implemented only under x64/x86 architecture. I think a possible solution is sse2neon but I am not sure it's the best and universal solution.
Later I can check using of this tool under ARM Linux.
The text was updated successfully, but these errors were encountered: