windows10,命令行下使用pip命令时报错,python运行成功,且环境变量已经设置,可能是更新了新版本pip所导致 解决方案: 一、使用pip.exe+命令可解决这个问题 二、进行python安装目录,pip.exe所在目录,可正常使用pip命令 1 cd d:Python37\Script ...
分类:
其他好文 时间:
2020-05-26 00:55:30
阅读次数:
77
提示 -bash: semanage: command not found 的错误。 semanage-01719×196 23.6 KB 这是因为你还没有安装 semanage 你可以 运行下面的命令进行安装 yum install policycoreutils-python 需要注意的是,如果 ...
分类:
Web程序 时间:
2020-05-25 22:26:06
阅读次数:
111
使用MySQL游标 首先,必须使用DECLARE语句声明游标: DECLARE cursor_name CURSOR FOR SELECT_statement; 游标声明必须在变量声明之后。如果在变量声明之前声明游标,MySQL将会发出一个错误。游标必须始终与SELECT语句相关联。 接下来,使用O ...
分类:
数据库 时间:
2020-05-25 19:38:01
阅读次数:
79
1、输入cnpm -v判断是否已经安装,如果显示command not found,则表示未安装 2、输入命令行,sudo npm install -g cnpm --registry=https://registry.npm.taobao.org --verbose // 必须加sudo,以管理员 ...
分类:
系统相关 时间:
2020-05-25 16:01:30
阅读次数:
107
``` ? ~ diskutil list #确认烧刻的磁盘 /dev/disk0 (internal, physical): #: TYPE NAME SIZE IDENTIFIER 0: GUID_partition_scheme *1.0 TB disk0 1: EFI EFI 314.6 M... ...
分类:
系统相关 时间:
2020-05-25 12:31:02
阅读次数:
71
通过pip install flask-sqlacodegen后使用命令:flask-sqlacodegen "mysql://root:123456@IP:3306/movie_cat" --tables user --outfile "/Users/user/PycharmProjects/fl ...
分类:
数据库 时间:
2020-05-24 16:39:14
阅读次数:
134
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.liwenwen.redcup03.mapper.UserMapper.selectByPrimaryKey at org.apa ...
分类:
移动开发 时间:
2020-05-24 16:34:31
阅读次数:
74
1.如果编译时出现“ERROR: Plugin with id 'com.android.application' not found.”错误. 解决方法:请在build.gradle文件中添加以下代码。 buildscript { repositories { google() jcenter() ...
分类:
移动开发 时间:
2020-05-24 00:29:37
阅读次数:
87
Windows git bash 默认没有sudo命令,可以添加win-sudo插件实现该功能 curl -s https://raw.githubusercontent.com/imachug/win-sudo/master/install.sh | sh 如果上面的命令没有用,可以复制https ...
有时候连得上数据库,有时候又连不上. 可能是数据库上当前的连接数目已经超过了它能够处理的最大值. select count(*) from v$process --当前的连接数 select value from v$parameter where name = 'processes' --数据库允 ...
分类:
移动开发 时间:
2020-05-23 18:13:09
阅读次数:
75