zoukankan      html  css  js  c++  java
  • Python 3.6 安装后需要安装的常用 {控件}?

    XML处理: pip3 install lxml

    文本处理:pip3 install requests

    OpenSSL:pip3 install pyOpenSSL

    twisted:https://www.lfd.uci.edu/~gohlke/pythonlibs/#twisted 下载 Twisted-17.9.0-cp36-cp36m-win_amd64.whl 到D盘根目录;

        重命名为:Twisted-17.9.0-cp36-none-win32.whl;因为可能会提示错误:Twisted-17.9.0-cp36-cp36m-win_amd64.whl  is not a supported wheel on this platform。

        运行:  pip3 install D:Twisted-17.9.0-cp36-none-win32.whl

    Scrapy:先安装twisted;因为可能会提示错误:error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools"。

        再安装:pypiwin32 (pip3 install pypiwin32),因为可能会在运行时提示 :import win32api    ImportError: DLL load failed: 找不到指定的模块。

        pip3 install Scrapy

    Suds: 先安装 client ( pip install client ) , 因为可能会提示错误:ModuleNotFoundError: No module named 'client'。

        pip install suds

  • 相关阅读:
    设计模式开始--工厂模式
    设计模式开始--UML类之间关系表示
    设计模式开始1--不明觉厉
    Gas Station
    Validate Binary Search Tree
    Word Ladder
    (转)基于快速排序的TOPK算法
    Number of 1 Bits
    Word Search
    Rotate Array
  • 原文地址:https://www.cnblogs.com/PengRay0221/p/8350533.html
Copyright © 2011-2022 走看看