python
blingbling*
这个作者很懒,什么都没留下…
展开
-
ERROR: Could not find a version that satisfies the requirement yaml (from versions: none) ERROR: No
之前在网上找了各种资料,cmd安装yaml,网上大部分写的都是pip install yaml可是,执行完就变成Could not find a version that satisfies the requirement yaml No matching distribution found for yaml.但是执行pip install pyyaml就可以成功。后来才知道,python3.X只能使用pip install pyyaml 来安装。想要看安装是否成功,输入import p原创 2020-11-18 17:33:27 · 18640 阅读 · 7 评论 -
用python turtle画画草地天空星星花朵小草
画画真的是需要些许艺术细胞(这个我好像没有,所以将就将就吧。。)直接上结果,代码在下方:import turtle as tr_a = 0.8wight = 1400 # 宽height = 980 # 高t.hideturtle()t.colormode(255)t.color((255, 155, 192), "pink")t.setup(wight, height)#绘画速度t.tracer(10)def move_pen(x, y): # 位置原创 2020-05-25 09:21:31 · 11576 阅读 · 5 评论 -
把python文件打包成exe的步骤和遇到的问题
一、安装pyinsatller打开命令行窗口,输入如下指令pip3 install pyinstaller然后静待pyinstaller自动安装好二、使用pyinstaller打包Python程序①在你的Python程序文件夹上(不点进去)按住shift并且右键,在弹出的选项中点击"在此处打开命令行窗口"或者“在此处打开PowerShell窗口”或者先进入命令行窗口,然后使用cd指令进入程序文件夹,示例:cd D:\Python②输入以下指令,开始打包pyinstaller -原创 2020-05-20 10:17:59 · 936 阅读 · 0 评论 -
pyecharts库——生成图表
pyecharts1、pip 安装$ pip install pyecharts2、源码安装$ git clone https://github.com/pyecharts/pyecharts.git$ cd pyecharts$ pip install -r requirements.txt$ python setup.py install使用 pyecharts-snapsho...转载 2019-11-01 17:00:39 · 932 阅读 · 0 评论 -
Cannot navigate to invalid URL
unhandled inspector error: {“code”:-32000,“message”:“Cannot navigate to invalid URL”}是因为driver.get(“www.baidu.com”),应该是driver.get(“http://www.baidu.com")原创 2019-04-04 13:37:20 · 1996 阅读 · 0 评论 -
imgToStr 图片转文字
from PIL import Imageimport os.pathimport reimport pytesseractpic_content=pytesseract.image_to_string(Image.open(r’D:\IMG\1.png’),lang=‘chi_sim’)print(pic_content)f = open(‘D:/testtxt/test.txt’,...原创 2019-07-17 07:55:22 · 693 阅读 · 0 评论