
系统
「已注销」
学海无涯,回头是岸
展开
-
python3.5安装加密模块pycrypto
在windows10下的python虚拟环境中用pip install -r requirements.txt安装项目所需依赖包,然而pycrypto包总是失败!导致后续的包也安装不成功。网上编译好的exe还没有python3.5的!直到网上一大神的一条命令拯救了我!pip install --use-wheel --no-index --find-links=https://github.c转载 2017-03-21 10:34:09 · 1751 阅读 · 0 评论 -
双系统重装windows后无ubuntu引导的问题
原因:windows系统在重装的时候把MBR重写了!使用ubuntu安装盘,从安装盘启动,选择试用ubuntu,然后打开终端。运行命令sudo fdisk -l找到ubuntu所在的盘运行命令sudo mkdir /media/tmpdir建立临时文件夹运行命令sudo mount /dev/sda6 /media/tmpdir挂载系统(/dev/sda6要根据自己的情况设定)原创 2017-03-11 18:51:31 · 492 阅读 · 0 评论 -
Ubuntu16.04将python2切换为python3
执行以下命令即可:sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 100sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 150如果要进行切换,则执行下面命令即可:sudo upda转载 2017-03-15 16:59:43 · 572 阅读 · 2 评论