windows上pip install 报编码错误

报错:UnicodeDecodeError: ‘ascii‘ codec can‘t decode byte 0xb1 in position 34: ordinal
not in range(128)

解决方式:

在python安装目录下Python26\Lib\site-packages新建一个文件,文件名为:sitecustomize.py

文件内容为:

import sys

sys.setdefaultencoding(‘utf-8‘)

python会自动加载这个文件,进而更改编码。

进行pip install 问题解决

时间: 2024-10-07 23:17:12

windows上pip install 报编码错误的相关文章

python pip install 报:HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.错误

下午想要安装 scrapy框架时报错,如图: 网上查了一下:因为网络差导致安装超时,所以用安装时指定源的方法可以解决: pip install scrapy -i https://pypi.tuna.tsinghua.edu.cn/simple 红色的字体表示要安装的模块 python pip install 报:HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.错误 原文地址:https:/

python2.7.6 , setuptools pip install, 报错:UnicodeDecodeError:'ascii' codec can't decode byte

今天折腾了一天,安装pyspider,由于依赖包众多,而且搜索到所有信息多是在linux平台和mac平台下的安装教程.可怜我试了n多版本,一直不成功. 最后发现有人说python的版本,不能低于2.7.6,否则pycurl无法安装成功,一查我的是2.7.2. 好吧,卸载,重新安装python2.7.6. 似乎安装后,能够顺利安装pycurl了,但是easy_install 报错信息与编码相关: 在网上搜索找到解决方案:http://www.360doc.com/content/14/0508/0

pip install报错Can't roll back cryptography; was not uninstalled

当使用pip install或者pip install --upgrade报错 Can't roll back cryptography; was not uninstalled 可以进行以下的尝试: sudo apt-get install libssl-dev libffi-dev 之后再继续php install pip install报错Can't roll back cryptography; was not uninstalled

ruby on rails上传报编码错误

Encoding::UndefinedConversionError in ProductsController#create "\xFF" from ASCII-8BIT to UTF-8 在使用ruby1.9.3做上传照片的时候,报这个错误,解决办法是将控制器里的 File.open("#{Rails.root}/app/assets/images/"+new_name, "w") { |file| file.write(img_data)

新安装的windows 10无法更新报0x80240fff错误的解决方案

如果windows 10的安装文件比较老,可能会报0x80240fff错误导致无法更新. 网络上说的方法是选择推迟更新,因为这样貌似能让windows选择另外的更新服务器. 但实际上在我遇到的情况问题也没有解决. 后来发现是可以在另外的应用安装更新的. https://www.microsoft.com/zh-cn/software-download/windows10 通过这个地址可以找到这个单独打更新的工具,直接更新到2019 may release. 后续就可以正常打更新了. 原文地址:h

pip install 报错

问题描述,在使用pip安装django相关软件包时,提示错误如下: [[email protected] install]# pip install django==1.6 Downloading/unpacking django==1.6 Cannot fetch index base URL https://pypi.python.org/simple/ Could not find any downloads that satisfy the requirement django==1.6

Mac OS X El Capitan (10.11) sudo pip install 报错 “OSError: [Errno 1] Operation not permitted”

由于 OS X El Capitan 采用了 System Integrity Protection 保护技术,导致 sudo pip install 安装python包时会产生报错: 1 File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/os.py", line 150, in makedirs 2 makedirs(head, mode) 3 File "/System

windows10上pip install channels

之前一直在MBP上做开发,在windows偶尔改一次代码,最近在windows上Pipi nstall了一次Django Channels,其中到twisted那步出现数坑 1. Microsoft Visual C++ 14.0 is required 这个问题的解决方法到 http://landinghub.visualstudio.com/visual-cpp-build-tools 页面下载安装  Visual C++ 2015 Build Tools   2. Cannot open 

mac上pip install时提示/System/Library/... 无权限

使用pip install安装包时,提示无权限,即使切换到root账号,仍然提示无权限 加上--user参数解决,如: pip install --user  ipython 原文地址:https://www.cnblogs.com/jinghan/p/8573119.html