
Python
煎鱼(EDDYCJY)
Hello World
展开
-
【Python】pip install windows下报ascii无法编码
原因: pip安装python包会加载我的用户目录,我的用户目录恰好是中文的,ascii无法编码 解决办法: python目录 Python27\Lib\site-packages 建一个文件sitecustomize.py 文件内容: import sys sys.setdefaultencoding('gb2312') python会自动运行这个文件原创 2017-06-25 15:33:03 · 447 阅读 · 0 评论 -
bash: scrapy: command not found
一、场景执行 pip install scrapy 后,安装成功且python session执行 import scrapy 成功二、问题在shell中执行 scrapy 返回 bash: scrapy: command not found三、解决办法(1)进入python的主目录,如cd /usr/local/python3.6/bin,查找 scrapy 项 (2)检查 cd /usr/b原创 2017-08-22 16:43:09 · 13243 阅读 · 0 评论 -
【Python】pip 国内镜像源
一、原因:pip由于默认使用国外源,有时候会被墙,导致出现 Read timed out二、更换国内镜像源(1)临时使用 pip install module_name -i https://pypi.douban.com/simple(2)全局使用 - Linux 的文件在~/.pip/pip.conf - Windows 在%HOMEPATH%\pip\pip.ini[global]原创 2017-08-23 11:19:07 · 711 阅读 · 0 评论