python安装dilb库提示:No CMAKE_C_COMPILER could be found.

No CMAKE_C_COMPILER could be found.
阅读全文

Nginx+uwsgi+Python3.6.8部署Flask项目

运行需要安装ghostscript具体要求:https://github.com/deimo/pdfcompress 接口说明 安装python3.6.8由于是编译安装,所以需要确认相应的依赖包已经安```yum install y gcc zlib sqlitedevel libXcomposite libXcursor libXi libXtst libXScrnSaver libXrandr atk atspi2atk gtk3 openssldevel```
阅读全文

Pyppeteer 使用

基础用法```pythonimport asynciofrom pyppeteer import launchasync def main(): headless参数设为False,则变成有头模式 Pyppeteer支持字典和关键字传参,Puppeteer只支持字典传参 指定引擎路径 exepath = r'C:\Users\Administrator\AppData\Local\pyppeteer\pyppeteer\
阅读全文

windows 中 pycharm 使用 pip 安装第三方模块后还是无法使用?

解决方法在设置工具python integrated Tools 中的 packages 选项中选择你 python 安装目录中的第三方包目录即可。(在项目:xxxx 中选择第三方包的只是针对当前项目生效哦)
阅读全文

python 利用 geoip 批量查询 IP 归属地

```python !/usr/bin/env python coding:utf8 import pandas as pdimport osimport geoip2.database 设置工作目录os.chdir('G:/python/0ip') 数据读取df = pd.read_excel('1.xlsx', sheet_name = 0)...
阅读全文

安装mayavi报错?

python 安装mayavi报错如下:```pythonbuilding 'traits.ctraits' extension error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools": http://landinghub.visualstudio.c...
阅读全文

Python的装饰器中为什么`*args`和`**kwargs`要一起使用?

一直很好奇,为什么装饰器中为什么`*args`和`**kwargs`要一起使用,直到在知乎中看到有关装饰器的一个回答下的评论,看了之后,恍然大悟,
阅读全文