安装/卸载第三包可能出现如下问题及相应解决办法: 在pycharm编辑中,使用anconda2更新.卸载第三方包时,出现如下错误: AttributeError:'module' object has no attribute 'main' 原因:新版pip中的main函数已经发生了变化,pip版本的原因,pip version 10.0.1,旧版本不会出现问题 参考:PyCharm 2017.3 在pip10.0.0版本中报错(module 'pip' has no attribute 'ma…
window7 64位下安装第三方包,,比如安装yaml的exe执行文件,会 报错及解决:python version 2.7(3.4) required,which was not found in the registry 方法:新建一个register.py 文件,把一下代码贴进去,保存 # # script to register Python 2.0 or later for use with win32all # and other extensions that require P…
今天新学到了python的模块方面的内容,我的版本是python2.7.13 想安装第三方包web.py的时候, 命令提示符 输入 pip install web.py 总是提示如下错误 You are using pip version 7.0.3+xy.11 however version 9.0.1 is available. You should consider upgrading via the 'python –m pip install –upgrade pip'command.…
npm i moment下载moment完成后,在ts文件中引入 import * as moment from "moment"; 结果疯狂报错,未找到moment模块. 一开始以为是缺少ts定义文件,想直接下载npm i @types/moment,下完之后依旧不行,打开官网一搜,说是moment模块里已经有自己的type definitions文件,不用再下载 打开node_modules/moment一看,果然是有 但是ts里就是不能使,于是开始疯狂百度. 一通操作后,看到一个…