vscode disable replace preview vscode 有时候出现如下解决方法:文件-->首选项->设置 搜索useReplacePreview 然后不勾选即可参考:https://stackoverflow.com/questions/52010796/disable-replace-preview-on-click-in-visual-studio-code...
数据库设计id 和 guid 一样吗 假设有tbl_info,tbl_score两个表tbl_info:学生姓名 学生学号 小明 1 小红 2 tbl_score:学生学号 学生成绩 1 99 2 88 两个表通过学号关联现在如果将tbl_score中的小红成绩备份出来然后再插入的时候,tbl_score的学号是自增,插入语句为:insert into t...
【转】virtualbox+centos6.5+Cloudera Manager5.9.3部署过程(一) 配置静态IP 转自[https://www.cnblogs.com/sdadx/p/9648501.html]有改动VirtualBox安装复制Centos6.6配置网络 由于要搭建mongodb的集群,先用虚拟机做下相关实验,以前都用VM Vare,但是现在这个电脑的配置不是太好,VM Vare比较耗资源,所以选择VirtualBox。 2.新建Linux虚拟机 ...
mysql 5.7 安装 https://www.cnblogs.com/lmh2072005/p/5656392.html注意这句话是在命令行下执行的,而不是登陆进mysql>后" 给用户设置一个密码:mysqladmin -u root -p password ,设置密码时发现报错:Access denied for user 'root'@'localhost' (using passwor...
docker run hello world errror sudo docker run hello-world 执行上面的出错了,错误如下docker: Error response from daemon: OCI runtime create failed: container_linux.go:348: starting container process caused "exec: \"/hello\": stat /hello:...
pycharm makefile plugin pycharm not support file type of makefile (no color) , we can install a plugin on line : file -> settting -> plugin : search makeile
给mysql设置密码 原文 https://jingyan.baidu.com/article/495ba841ef412d38b30edeb2.htmlmysql默认没有密码,直接命令行mysql就可以进入.现在设置密码 :命令行执行 mysql // 先进入数据库set password for root@localhost = password('p
scrapy 报错 no module named win32api bs4 html5lib 的解决方案 解决方案:原因是缺少win32,到 http://sourceforge.net/projects/pywin32/files/找到对应的版本进行下载,直接安装即可http://blog.csdn.net/olanlanxiari/article/details/48196255
python3 安装 scrapy Unable to find vcvarsall.bat pip3 install srapy 出现了 Unable to find vcvarsall.bat 因为按照twisted需要win C/C++编译环境, 但是没有,所以直接安装whl的https://www.lfd.uci.edu/~gohlke/pythonlibs/根据自己操作系统和python版本选择 Twisted-17.9.0-cp34-
给Github上的readme.md加上换行(回车)效果 github上的readme.md默认是没有换行效果的,如果直接在里面编辑文本显示,没有换行效果的readme会很难看,利用CSDN博客的源代码功能,将readme中的内容拷贝到博客中加上html标签,然后粘贴到readme.md中就有换行效果了。https://jingyan.baidu.com/article/59a015e3a13106f7948865d5.html
centos 6 python3 安装 Collecting Twisted>=13.1.0 (from Scrapy) Could not find a version that satisf pip3 install Scrapy报错Collecting Twisted>=13.1.0 (from Scrapy) Could not find a version that satisfies the requirement Twisted>=13.1.0 (from Scrapy) (from versions: )No matching distribution fo
windows xp 安装python3 公司的电脑由于编译环境问题,是xp。 python对xp支持的最后版本为3.4.4https://www.python.org/ftp/python/3.4.4/python-3.4.4.msi安装过程一直下一步即可。完了之后设置环境变量。参考了http://www.runoob.com/python/python-install.html