首页 > 编程语言 >python2.7 pip install pyyaml 安装出现错误

python2.7 pip install pyyaml 安装出现错误

时间:2023-09-27 11:57:35浏览次数:52  
标签:pyyaml python2.7 conda install pip 安装

conda 环境 python2.7 

安装 pyyaml: pip install pyyaml

错误如下:

 ERROR: Command errored out with exit status 1:    command: bin/python2.7 /python2.7/site-packages/pip/_vendor/pep517/_in_process.py get_requires_for_build_wheel /tmp/tmp4If62U      

估计是依赖的包没有安装。

解决办法:

使用conda 安装成功

 conda install pyyaml

import yaml成功

 

标签:pyyaml,python2.7,conda,install,pip,安装
From: https://www.cnblogs.com/bile/p/17732358.html

相关文章

  • OGG报错 INS-85054 in oggca.sh createing a new Service Manager after removing a p
    这个报错主要是ogg的自启动和目录问题DeletethefollowingfilesattheOSlevel:Linux7/etc/systemd/system/OracleGoldenGate.service/etc/oggInst.locLinux6/etc/init.d/OracleGoldenGate/etc/rc.d/*OracleGoldenGate/etc/rc*.d/*OracleGoldenGate/etc/oggInst......
  • ## Could not find a working installation of Boost.
     001、问题 002、解决方法(base)[root@pc1MaSuRCA-3.3.1]#yum-yinstallboostboost-devel(base)[root@pc1MaSuRCA-3.3.1]#yum-yinstallgcc-c++.x86_64gperf 参考:https://code84.com/754823.html ......
  • 解决:sass-loader@6.0.6 requires a peer of node-sass@^4.0.0 but none is installed.
    参考:https://blog.csdn.net/hancoder/article/details/113821646去https://github.com/sass/npnode-sass或者https://github.com/sass/node-sass/releases都可以看到node和node-sass对应的版本信息npmconfigsetregistryhttp://registry.npm.taobao.org/npminstall......
  • 解决:npm ERR! chromedriver@2.27.2 install: `node install.js`
    https://cdn.npmmirror.com/binaries/chromedriver/2.27/chromedriver_win32.zip可以点击这个链接直接下载。删掉项目中的node_modules文件夹。根据自己的下载地址,安装依赖。npminstallchromedriver--chromedriver_filepath=文件地址注意:不需要解压缩。npminstall......
  • How to use a shell script to check whether a command had been installed in the L
    HowtouseashellscripttocheckwhetheracommandhadbeeninstalledintheLinuxserverAllInOneerrors❌shellscripterror[::需要整数表达式shellscripterror[:-eq:需要一元表达式shellscripterror[:==:需要一元表达式#!/usr/bin/envbashif[[$(c......
  • 已解决The following specifications were found to be incompatible with the existi
    已解决Thefollowingspecificationswerefoundtobeincompatiblewiththeexistingpythoninstallation文章目录报错问题解决方法PS报错问题之前在工作中遇到过这个坑,记录一下问题以及解决方法,不一定针对所有情况都能用,但是可以供大家参考。问题描述如下:UnsatisfiableErr......
  • Docker - Install and Uninstall
    Install:1.SetupDocker'sAptrepository.#AddDocker'sofficialGPGkey:sudoapt-getupdatesudoapt-getinstallca-certificatescurlgnupgsudoinstall-m0755-d/etc/apt/keyringscurl-fsSLhttps://download.docker.com/linux/ubuntu/gpg|......
  • python文件打包成exe(pyinstaller)
    参数说明-F,–onefile|打包一个单个文件,如果你的代码都写在一个.py文件的话,可以用这个,如果是多个.py文件就别用-D,–onedir|打包多个文件,在dist中生成很多依赖文件,适合以框架形式编写工具代码-w,–windowed,–noconsole|使用Windows子系统执行.当程序启动的时候不会打......
  • npm install 命令安装没用
    页面报错没有插件,npm安装后不起作用,用这个没用npminstallvue-quill-editor换成这个就好了npminstall--savevue-quill-editor不行就试试下面这几个npminstallvue-quill-editor-savenpmivue-quill-editor-Snpmi--savevue-quill-editor......
  • pip install 安装模块指定版本
    一、Scipy模块指定安装版本pipinstallScipy#最新版本pipinstallScipy==1.2.1#指定版本pipinstall'Scipy>=1.2.1'#最小版本免责声明:本号所涉及内容仅供安全研究与教学使用,如出现其他风险,后果自负。参考、来源:https://blog.csdn.net......