代码之家  ›  专栏  ›  技术社区  ›  Ben

无法使用SDK运行AzureML实验-无法为pynacl构建控制盘/退出状态:1

  •  0
  • Ben  · 技术社区  · 2 年前

    我正在尝试使用sdk运行AzureML实验(遵循我的课程)。当我尝试使用这个实验时。提交实验准备的函数,然后失败,并显示以下错误消息:

    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
    

    Azure env在我的anaconda navigator中创建了一段时间,然后被删除。

    有人知道我该怎么处理吗?任何帮助都将不胜感激。

    0 回复  |  直到 2 年前
        1
  •  0
  •   DeepDave-MT    2 年前

    解决 ERROR: Could not build wheels for pynacl which use PEP 517 and cannot be installed directly 如果出现此错误,请尝试以下方法之一:

    1. 安装缺少的依赖项:

      sudo apt install libpython3-dev build-essential
      
    2. 升级pip:

      pip3 install --upgrade pip
      
    3. 使用setuptools wheel升级pip:

      pip3 install --upgrade pip setuptools wheel
      
    4. 重新安装PEP517:

      pip3 install p5py
      pip3 install PEP517
      

    你可以参考 ERROR: Could not build wheels for scipy which use PEP 517 and cannot be installed directly , Could not build wheels for _ which use PEP 517 and cannot be installed directly - Easy Solution failed building wheel for pynacl

    推荐文章