Python 官方文档:入门教程 => 点击学习
PyScripter是一个使用Delphi开发的开源的python集成开发环境(IDE),发布于MIT协议之下。[1]PyScripter支持Python2.4、2.5、2.6、2.7、3.0、3.1、3.2,而且可以根据需要切换。PySc
PyScripter分32和64为两种,安装时需要对应python的位数,与操作系统无关。
即:32位python对应32位pyScripter。64位类似
问题分析见:Http://www.crifan.com/pyscripter_start_error_python_could_not_be_properly_initialized_we_must_quit/
常见错误2:ascii错误
修改:安装目录下lib\site.py
def setencoding():
"""Set the string encoding used by the Unicode implementation. The
default is 'ascii', but if you're willing to experiment, you can
change this."""
encoding = "ascii" # Default value set by _PyUnicode_Init()
if 1: #此处 把"if 0" 修改为 "if 1"
# Enable to support locale aware default string encodings.
import locale
loc = locale.getdefaultlocale()
if loc[1]:
encoding = loc[1]
PyScripter官网为:http://code.Google.com/p/pyscripter/
另附两个下载地址:
PyScripter_x86:
http://pyscripter.googlecode.com/files/PyScripter-v2.5.3-Setup.exe
PyScripter_x64:
http://pyscripter.googlecode.com/files/PyScripter-v2.5.3-x64-Setup.exe
--结束END--
本文标题: 【python】windows下好用的的
本文链接: https://lsjlt.com/news/190641.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0