分类:
<b>PyCharm error please select a valid python interpreter 解决办法</b>

PyCharm error please select a valid python interpreter 解决办法

栏目分类:Python 浏览次数:2352 发布时间:2018-09-06

PyCharm error please select a valid python interpreter 解决办法...

TAG:
python库pip安装yaml失败解决方法

python库pip安装yaml失败解决方法

栏目分类:Python 浏览次数:503 发布时间:2018-07-25

我们在使用pip install yaml安装库提示如下: 首先使用命令先更新pip python -m pip install --upgrade pip 然后去网站单独下载https://pypi.org/project/PyYAML/#files 找到对应的版本whl文件 pip install PyYAML-3.1...

TAG:
python编码处理自动转换

python编码处理自动转换

栏目分类:Python 浏览次数:188 发布时间:2018-06-03

defgetCoding(strInput):获取编码格式ifisinstance(strInput,unicode):returnunicodetry:strInput.decode(utf8)returnutf8except:passtry:strInput.decode(gbk)returngbkexcept:passdeftran2UTF8(strInput):转化为utf8格式strCodingFmt=getCoding(...

TAG:
python解析种子信息获取种子创建时间文件列表等等数据

python解析种子信息获取种子创建时间文件列表等等数据

栏目分类:Python 浏览次数:323 发布时间:2018-06-02

有时候我们不想打开迅雷或者其他软件查看种子种包含文件时候,如下代码就能胜任。 编码需要自动转换 pytorrent 项目: https://github.com/ndroi/pytorrent pytorrent-master.zip #!-*-encoding:utf8-*-imp...

TAG:
pythonPIP新增模块后出现错误无法安装You can upgrade to a newer version of Python to solve

pythonPIP新增模块后出现错误无法安装You can upgrade to a newer version of Python to solve

栏目分类:Python 浏览次数:331 发布时间:2018-05-24

在安装python完成后 安装了pip而pip无法安装模块提示如下: C:\Python27\lib\site-packages\pip-10.0.1-py2.7.egg\pip\_vendor\urllib3\util\ssl_ .py:137: InsecurePlatformWarning: A true SSLContext object is not available. Thi s...

TAG:
python爬虫requests过程中添加headers

python爬虫requests过程中添加headers

栏目分类:Python 浏览次数:306 发布时间:2018-05-14

headers={User-Agent:Mozilla/5.0(WindowsNT10.0;Win64;x64)AppleWebKit/537.36(KHTML,likeGecko)Chrome/52.0.2743.116Safari/537.36Edge/15.15063}r=requests.get(http://www.baidu.com/,params=keyword,headers=headers,timeout=3)...

TAG:
centos下安装phantomjs过程详解

centos下安装phantomjs过程详解

栏目分类:Python 浏览次数:222 发布时间:2018-05-13

官网下载:http://phantomjs.org/download.html 终端运行: wget https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2 解压 tar -jxvf phantomjs-2.1.1-linux-x86_64.tar.bz2 解压可能报错: 安装bz...

TAG:
PythonPhantomJS报错提示已经弃用解决方法

PythonPhantomJS报错提示已经弃用解决方法

栏目分类:Python 浏览次数:262 发布时间:2018-04-30

运行后提示已被弃用这是怎么回事呢? selenium的版本问题,使用pip show selenium显示默认安装的是3.11.0 先卸载:pipuninstallselenium在安装:pipinstallselenium==2.48.0 之后运行没有报错!!...

TAG:
PythonPhantomjs截取中文网站时候不显示中文解决办法

PythonPhantomjs截取中文网站时候不显示中文解决办法

栏目分类:Python 浏览次数:241 发布时间:2018-04-29

在使用爬虫截图时候发现截取中文网时候,不显示中文! 需要安装中文字体: yuminstallbitmap-fontsbitmap-fonts-cjk...

TAG:
Python 编码为什么那么蛋疼?

Python 编码为什么那么蛋疼?

栏目分类:Python 浏览次数:321 发布时间:2017-03-23

据说,每个做 Python 开发的都被字符编码的问题搞晕过,最常见的错误就是 UnicodeEncodeError、UnicodeDecodeError,你好像知道怎么解决,遗憾的是,错误又出现在其它地方,问题总是重蹈覆辙...

TAG: