摘要:
安装 sudo apt-get install python3-pip 升级 sudo pip3 install --upgrade pip 卸载 sudo apt-get remove python3-pip 卸载后重装pip2 sudo apt-get install python-pip 如果 阅读全文
摘要:
显示显卡:lshw -C display lspci |grep VGA 查看是否安装成功:nvidia-smi 卸载显卡:sudo apt-get purge nvidia-* 或 sudo /usr/bin/nvidia-uninstall 禁用noveau: sudo gedit /etc/m 阅读全文
摘要:
参考:http://blog.csdn.net/yhaolpz https://blog.csdn.net/yhaolpz/article/details/71375762 https://blog.csdn.net/sunpeng19960715/article/details/54835148 阅读全文
摘要:
论文查重的福利来了,PaperTime检测联盟提供知网查重,免费改重助手,机器人自动降重,网址是:http://www.papertime.com.cn 阅读全文
摘要:
vector的几种初始化及赋值方式: (1)不带参数的构造函数初始化 (2)带参数的构造函数初始化 (3)通过数组地址初始化 (4)通过同类型的vector初始化 (5)通过insert初始化 insert也可通过数组地址区间实现插入 此外,insert还可以插入m个值为n的元素 (6)通过copy 阅读全文
摘要:
博客来源于http://blog.csdn.net/darlingwood2013/article/details/60322258 安装说明 平台:目前可在Ubuntu、Mac OS、Windows上安装 版本:提供gpu版本、cpu版本 安装方式:pip方式、Anaconda方式 Tips: 安 阅读全文
摘要:
程序在的内存中的分配(常量,局部变量,全局变量,程序代码) 一. 在c中分为这几个存储区1.栈 - 由编译器自动分配释放2.堆 - 一般由程序员分配释放,若程序员不释放,程序结束时可能由OS回收3.全局区(静态区),全局变量和静态变量的存储是放在一块的,初始化的全局变量和静态变量在一块区域,未初始化 阅读全文
摘要:
Selenium及自动化测试 1. 下载firefox 浏览器40.0 http://ftp.mozilla.org/pub/firefox/releases/40.0/win32/zh-CN/ 2.下载安装Selenium 3.打开SeleniumIDE录制脚本和导出脚本 4.创建javaweb项 阅读全文
摘要:
一、 Use the following method printPrimes() for questions a–d. a)Draw the control flow graph for the printPrimes() method. b)Make sure the value of MAXP 阅读全文
摘要:
Tasks: a) Description of triangle problem: Function triangle takes three integers a,b,c which are length of triangle sides; calculates whether the tri 阅读全文