无法 运行 使用 SDK 进行 AzureML 实验 - 无法为 pynacl 构建 Wheel / 退出 status:1
Unable To Run AzureML Experiment with SDK - Failed to Build Wheel for pynacl / Exit status:1
我正在尝试 运行 使用 sdk 的 AzureML 实验(遵循 Udemy 课程)。当我尝试使用 Experiment.submit 函数时,实验准备就绪,然后失败并显示以下错误消息:
ERROR: Command errored out with exit status 1
ERROR: Failed building wheel for pynacl
ERROR: Could not build wheels for pynacl which use PEP 517 and cannot be installed directly
在我的 anaconda 导航器中创建的 Azure 环境在短时间内被删除。
有谁知道我该如何解决这个问题?任何帮助将不胜感激。
要解决 ERROR: Could not build wheels for pynacl which use PEP 517 and cannot be installed directly
此错误,请尝试以下任一方法:
安装缺少的依赖项:
sudo apt install libpython3-dev build-essential
升级点数:
pip3 install --upgrade pip
使用 setuptools wheel 升级 pip:
pip3 install --upgrade pip setuptools wheel
重新安装 PEP517:
pip3 install p5py
pip3 install PEP517
可以参考ERROR: Could not build wheels for scipy which use PEP 517 and cannot be installed directly, and failed building wheel for pynacl
我正在尝试 运行 使用 sdk 的 AzureML 实验(遵循 Udemy 课程)。当我尝试使用 Experiment.submit 函数时,实验准备就绪,然后失败并显示以下错误消息:
ERROR: Command errored out with exit status 1
ERROR: Failed building wheel for pynacl
ERROR: Could not build wheels for pynacl which use PEP 517 and cannot be installed directly
在我的 anaconda 导航器中创建的 Azure 环境在短时间内被删除。
有谁知道我该如何解决这个问题?任何帮助将不胜感激。
要解决 ERROR: Could not build wheels for pynacl which use PEP 517 and cannot be installed directly
此错误,请尝试以下任一方法:
安装缺少的依赖项:
sudo apt install libpython3-dev build-essential
升级点数:
pip3 install --upgrade pip
使用 setuptools wheel 升级 pip:
pip3 install --upgrade pip setuptools wheel
重新安装 PEP517:
pip3 install p5py pip3 install PEP517
可以参考ERROR: Could not build wheels for scipy which use PEP 517 and cannot be installed directly,