cmd启动python交互模式 出现UnicodeDecodeError: 'gbk' codec can't decode byte 0x9a in position 533
这是因为在python交互模式的中输出了中文,且是个输出被记录在.python_history中
删除历史记录文件
C:\Users\Administrator\.python_history
这是因为在python交互模式的中输出了中文,且是个输出被记录在.python_history中
删除历史记录文件
C:\Users\Administrator\.python_history
需要的依赖包grpcio googleapis-common-protos首先需要根据proto 文件生成代码proto 示例代码syntax = "proto3"; service ...
conda 环境conda -h 查看帮助conda env list 查看所有虚拟环境deactivate 退出虚拟环境activate 环境名 进入虚拟环境virtualenv 环境workon&nb...
linux 系统版本 ubuntu16.04 ,其他版本自动替换对应的命令apt-get update apt install -y pythonapt install -y python-pip pip i...
from multiprocessing import Pool def test(x,y): return x+y # ...
from fnmatch import fnmatchyour_path = ""your_rule = ""print(fnmatch('EqualsAlwaysTrue.java'...
ubuntu 20.04 python2.7安装mysqlclient 遇见问题解决方案:sudo apt-get install libmysqlclient-dev apt-get ...