windows 7 安装 scrapy

简介:

基于64位 win7 系统

 

先到 http://www.lfd.uci.edu/~gohlke/pythonlibs/ 下载四个 wheel 文件:

1. lxml-3.4.4-cp27-none-win_amd64.whl

2. Twisted-15.5.0-cp27-none-win_amd64.whl

3. pywin32-220-cp27-none-win_amd64.whl

4. Scrapy-1.0.5-py2-none-any.whl

 

然后命令行下进入下载目录,pip 安装:

1. pip install lxml-3.4.4-cp27-none-win_amd64.whl

2. pip install Twisted-15.5.0-cp27-none-win_amd64.whl

3. pip install pywin32-220-cp27-none-win_amd64.whl

4. pip install Scrapy-1.0.5-py2-none-any.whl

 

为了使 pywein32 能够用起来,最后,还有一步:

复制 C:\python27\Lib\site-packages\pywin32_system32\ 下所有文件到 C:\windows\system32\ 下

 

本文转自罗兵博客园博客,原文链接:http://www.cnblogs.com/hhh5460/p/5219449.html ,如需转载请自行联系原作者
相关文章
|
1月前
|
iOS开发 MacOS Windows
Mac air使用Boot Camp安装win10 ,拷贝 Windows 文件时出错
Mac air使用Boot Camp安装win10 ,拷贝 Windows 文件时出错
|
6天前
|
数据安全/隐私保护 Windows
安装 Windows Server 2019
安装 Windows Server 2019
|
6天前
|
Windows
安装 Windows Server 2003
安装 Windows Server 2003
|
7天前
|
NoSQL Shell MongoDB
Windows 平台安装 MongoDB
10月更文挑战第10天
16 0
Windows 平台安装 MongoDB
|
10天前
|
Windows Python
Windows安装dlib,遇到问题汇总解决
Windows安装dlib,遇到问题汇总解决
20 4
|
14天前
|
Oracle 关系型数据库 MySQL
Mysql(1)—简介及Windows环境下载安装
MySQL 是一个流行的关系型数据库管理系统(RDBMS),基于 SQL 进行操作。它由瑞典 MySQL AB 公司开发,后被 Sun Microsystems 收购,现为 Oracle 产品。MySQL 是最广泛使用的开源数据库之一,适用于 Web 应用程序、数据仓库和企业应用。
46 2
|
15天前
|
JavaScript Windows
windows安装vue
windows安装vue
|
16天前
|
应用服务中间件 Apache Windows
免安装版的Tomcat注册为windows服务
免安装版的Tomcat注册为windows服务
25 3
|
6天前
|
Windows
安装Windows XP系统
安装Windows XP系统
|
29天前
|
存储 JavaScript 前端开发
Node 版本控制工具 NVM 的安装和使用(Windows)
本文介绍了NVM(Node Version Manager)的Windows版本——NVM for Windows的安装和使用方法,包括如何安装Node.js的特定版本、列出已安装版本、切换使用不同版本的Node.js,以及其他常用命令,以实现在Windows系统上对Node.js版本的便捷管理。
Node 版本控制工具 NVM 的安装和使用(Windows)