M1 Mac で x86_64 な Python 環境を構築する
April 22, 2022
つい最近、M1 Mac を使うようになって、普通に Python を使っていたのですが、pip 経由でインストールできないパッケージがあることに気づきました。
具体的には、以下のように poetry でインストール中に azureml-dataprep-native などのインストールが失敗します。
$ poetry installInstalling dependencies from lock filePackage operations: 65 installs, 0 updates, 0 removals• Installing azureml-dataprep-native (38.0.0): FailedRuntimeErrorUnable to find installation candidates for azureml-dataprep-native (38.0.0)at ~/.local/lib/python3.8/site-packages/poetry/installation/chooser.py:72 in choose_for68│69│ links.append(link)70│71│ if not links:→ 72│ raise RuntimeError(73│ "Unable to find installation candidates for {}".format(package)74│ )75