
Python
huihut
这个作者很懒,什么都没留下…
展开
-
PyCharm自动安装pymysql包失败
在PyCharm中新建Web2Py项目后提示没有pymysql,自动安装失败,可通过安装pymysql或者转换Python版本解决。原创 2017-03-08 20:49:31 · 9510 阅读 · 0 评论 -
C++ 调用 Python 模块
// C++ call Python module // author: huihut// repo: https://gist.github.com/huihut/b4597d097123a8c8388c71b3f0ff21e5#include <iostream>#include <Python.h>// C++ call Python moduleb...原创 2018-06-12 17:31:26 · 1507 阅读 · 0 评论 -
Python 生成带标签数据集的 CSV 文件
#!/usr/bin/python# -*- coding: UTF-8 -*-# Python 生成 CSV 文件# Python 生成 CSV 文件,可用于生成带标签的数据集 CSV 文件,标签从0开始自动升序:0,1,2,3...# 作者:huihut# 仓库:https://gist.github.com/huihut/9881c98a1d9279d4fa9dfd8475e3f...原创 2018-06-17 15:36:14 · 9580 阅读 · 1 评论 -
python-dev 库缺失导致安装 matplotlib 出错
表现sudo pip install matplotlib安装 matplotlib 时出现以下错误Installing collected packages: subprocess32, cycler, backports.functools-lru-cache, pyparsing, kiwisolver, matplotlib Running setup.py install ...原创 2018-10-13 15:12:39 · 6285 阅读 · 2 评论 -
pyparsing 无法卸载导致安装 matplotlib 出错
表现sudo pip install matplotlib安装 matplotlib 时出现以下错误 Found existing installation: pyparsing 1.5.6Cannot uninstall 'pyparsing'. It is a distutils installed project and thus we cannot accurately dete...原创 2018-10-13 15:14:26 · 2351 阅读 · 0 评论 -
Python DeprecationWarning the imp module is deprecated in favour of importlib
报错E:\PyCharm 2018.2.5\helpers\pycharm\docrunner.py:1: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses import imp原因imp...原创 2019-01-22 02:35:54 · 30830 阅读 · 7 评论