
安装软件
文章平均质量分 52
DarrenXf
这个作者很懒,什么都没留下…
展开
-
Ubuntu Linux pip 安装 scipy
pip install scipy原创 2018-09-06 14:32:19 · 1020 阅读 · 0 评论 -
Ubuntu 16.04 apt-get 安装 ffmpeg
Ubuntu 16.04 下 apt-get 安装 ffmpegsudo add-apt-repository ppa:djcj/hybridsudo apt-get updatesudo apt-get -y install ffmpeg网速比较慢的话可能会失败,经测试可以安装成功。...原创 2018-09-06 14:13:45 · 5667 阅读 · 0 评论 -
Python 模块feedparser安装使用
RSS(简易信息聚合)简易信息聚合(也叫聚合内容)是一种RSS基于XML标准,在互联网上被广泛采用的内容包装和投递协议。RSS(Really Simple Syndication)是一种描述和同步网站的内容格式,是使用最广泛的XML应用。RSS搭建了信息迅速传播的一个技术平台,使得每个人都成为潜在的信息提供者。安装$ pip install feedparserfeedpars...原创 2018-09-14 10:58:13 · 3575 阅读 · 0 评论 -
Ubuntu 16.04 curl 安装 使用
curl是利用URL语法在命令行方式显工作的开元文件传输工具。安装$ sudo apt install -y curl使用$ curl http://www.baidu.com这是最简单的使用方法。用这个命令获得到http://www.baidu.com指向的页面,同样,如果这个URL指向的是文件或者图片,就会直接下载到本地。如果下载的是HTML文档,那么缺省只会显示文件头...原创 2018-09-14 10:58:34 · 12796 阅读 · 0 评论 -
Python pylint requires Python '>=3.4.*' but the running Python is 2.7.12
用pylint 1.9.x 安装 pip install pylint==1.9.3.或者换源pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --upgrade pylint==1.9.3 应该是可以安装成功下面是stackoverflow上的问答How can I install the pylint for pyt...原创 2018-10-08 20:02:32 · 9286 阅读 · 0 评论 -
Python pylint的安装和使用
什么是pylint?Pylint 是一个 Python 代码分析工具,它分析 Python 代码中的错误,查找不符合代码风格标准和有潜在问题的代码。Pylint 是一个 Python 工具,除了平常代码分析工具的作用之外,它提供了更多的功能:如检查一行代码的长度,变量名是否符合命名标准,一个声明过的接口是否被真正实现等等。Pylint 的一个很大的好处是它的高可配置性,高可定制性,并且可以很...原创 2018-10-08 22:38:52 · 22317 阅读 · 0 评论 -
Install anaconda and then install cudatoolkit
Install anaconda and then install cudatoolkitI use the system Ubuntu.Open the link:https://www.anaconda.com/download/#linuxI choose the python 2.7 x86_64.As matter of fact,I do not clearly underst...原创 2019-01-06 23:00:01 · 2062 阅读 · 0 评论 -
Install mxnet and install minpy
make sure the things below.1.your machine has a nvidia gpu.2.installed gpu cuda and cudnn.how to install mxnet?pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --upgrade mxnet-cu90us...原创 2019-01-08 21:15:34 · 1794 阅读 · 1 评论