Skip to content
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

can't install or build from source on Apple Silicon (arm64) macs #474

Open
BenWibking opened this issue Feb 3, 2023 · 9 comments
Open

Comments

@BenWibking
Copy link

BenWibking commented Feb 3, 2023

There is no arm64 package provided on conda-forge:

(cling) ➜  ~ mamba install xeus-cling -c conda-forge


                  __    __    __    __
                 /  \  /  \  /  \  /  \
                /    \/    \/    \/    \
███████████████/  /██/  /██/  /██/  /████████████████████████
              /  / \   / \   / \   / \  \____
             /  /   \_/   \_/   \_/   \    o \__,
            / _/                       \_____/  `
            |/
        ███╗   ███╗ █████╗ ███╗   ███╗██████╗  █████╗
        ████╗ ████║██╔══██╗████╗ ████║██╔══██╗██╔══██╗
        ██╔████╔██║███████║██╔████╔██║██████╔╝███████║
        ██║╚██╔╝██║██╔══██║██║╚██╔╝██║██╔══██╗██╔══██║
        ██║ ╚═╝ ██║██║  ██║██║ ╚═╝ ██║██████╔╝██║  ██║
        ╚═╝     ╚═╝╚═╝  ╚═╝╚═╝     ╚═╝╚═════╝ ╚═╝  ╚═╝

        mamba (1.3.0) supported by @QuantStack

        GitHub:  https://github.com/mamba-org/mamba
        Twitter: https://twitter.com/QuantStack

█████████████████████████████████████████████████████████████


Looking for: ['xeus-cling']

conda-forge/osx-arm64                                       Using cache
conda-forge/noarch                                          Using cache
Could not solve for environment specs
Encountered problems while solving:
  - nothing provides requested xeus-cling

The environment can't be solved, aborting the operation

Installing the dependencies needed to build from source also fails:

➜  ~ mamba create -n xeus-cling -c conda-forge cmake xeus-zmq cling nlohmann_json cppzmq xtl pugixml doctest cpp-argparse


                  __    __    __    __
                 /  \  /  \  /  \  /  \
                /    \/    \/    \/    \
███████████████/  /██/  /██/  /██/  /████████████████████████
              /  / \   / \   / \   / \  \____
             /  /   \_/   \_/   \_/   \    o \__,
            / _/                       \_____/  `
            |/
        ███╗   ███╗ █████╗ ███╗   ███╗██████╗  █████╗
        ████╗ ████║██╔══██╗████╗ ████║██╔══██╗██╔══██╗
        ██╔████╔██║███████║██╔████╔██║██████╔╝███████║
        ██║╚██╔╝██║██╔══██║██║╚██╔╝██║██╔══██╗██╔══██║
        ██║ ╚═╝ ██║██║  ██║██║ ╚═╝ ██║██████╔╝██║  ██║
        ╚═╝     ╚═╝╚═╝  ╚═╝╚═╝     ╚═╝╚═════╝ ╚═╝  ╚═╝

        mamba (1.3.0) supported by @QuantStack

        GitHub:  https://github.com/mamba-org/mamba
        Twitter: https://twitter.com/QuantStack

█████████████████████████████████████████████████████████████


Looking for: ['cmake', 'xeus-zmq', 'cling', 'nlohmann_json', 'cppzmq', 'xtl', 'pugixml', 'doctest', 'cpp-argparse']

conda-forge/osx-arm64                                       Using cache
conda-forge/noarch                                          Using cache
Could not solve for environment specs
Encountered problems while solving:
  - nothing provides requested cling
  - nothing provides requested cpp-argparse

The environment can't be solved, aborting the operation
@BenWibking BenWibking changed the title can't install on Apple Silicon (arm64) macs can't install or build from source on Apple Silicon (arm64) macs Feb 3, 2023
@trivedip
Copy link

I am experiencing the same issue.

@clstaudt
Copy link

Don't leave us mac users hanging please. :)

@accelee
Copy link

accelee commented Aug 6, 2023

Can't work.

Looking for: ['xeus-cling']

warning libmamba Could not parse mod/etag header
warning libmamba Could not parse mod/etag header
warning libmamba Could not parse mod/etag header
pkgs/main/osx-arm64 (check zst) Checked 1.5s
warning libmamba Could not parse mod/etag header
pkgs/main/noarch (check zst) Checked 0.4s
warning libmamba Could not parse mod/etag header
pkgs/r/osx-arm64 (check zst) Checked 0.5s
warning libmamba Could not parse mod/etag header
pkgs/r/noarch (check zst) Checked 0.4s
pkgs/r/osx-arm64 118.0 B @ 82.0 B/s 1.4s
pkgs/main/osx-arm64 1.6MB @ 1.1MB/s 1.4s
pkgs/main/noarch 696.5kB @ 311.3kB/s 2.2s
conda-forge/noarch 11.9MB @ 1.7MB/s 7.2s
pkgs/r/noarch 1.3MB @ 149.1kB/s 7.3s
conda-forge/osx-arm64 6.3MB @ 538.0kB/s 11.6s
Could not solve for environment specs
The following package could not be installed
└─ xeus-cling does not exist (perhaps a typo or a missing channel).

@mcbarton
Copy link

For those still trying to work out how to install Cling my advice is to follow the instructions in the readme of https://github.com/compiler-research/CppInterOp to build the developer version 1.0 . It is possible to install version 0.9 of Cling, but I found it not to be as straightforward. I would avoid trying to build with Cling with the Cling Packaging Tool. I have tested the kernels that come with Cling after following these build instructions (adding the kernels which come with Cling is separate to these build instructions), and built kernels in the xeus-clang-repl repo. I built the dependencies using packages from the Macports package manager, but hopefully everything is included in the conda package manager. Happy to try and help if you run into difficulties.

@BenWibking
Copy link
Author

It would make a lot more sense for the project to just provide an arm64 package for conda.

@mcbarton
Copy link

As far as I have been able to tell the only package manager with a package description on MacOS arm64 is Homebrew, but it was recently deprecated due to being unable to build. I am not part of the Cling project, and have no idea why they don't have a package description on conda (I also haven't created a conda package before so wouldn't know how to start creating one). Is there anything I could provide which may help with the creation of a package in conda?

@tlkahn
Copy link

tlkahn commented Mar 6, 2024

Confirmed that the problem still persists.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

7 participants