
python
BeautifulApple
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
windows下 python单独环境 不用anaconda(例python3.7) 安装 tesserocr 图像识别
踩了各种坑,最后这样操作 成功 1.安装Tesseract-OCRhttps://digi.bib.uni-mannheim.de/tesseract/ 2.安装tesserocr whl 版 pipinstalltesserocr-2.4.0-cp37-cp37m-win_amd64.whl (记得加路径) https://github.com/simonflueck...原创 2020-04-27 18:01:31 · 444 阅读 · 0 评论 -
python 环境迁移,新电脑安装python把旧电脑的包导入新电脑
旧电脑中: 命令行运行 pip freeze> requirements.txt 一般会生成在C:\Users\用户 这个路径中 把运行好的requirements.txt文件拷贝到新电脑中 然后新电脑中命令行运行代码pip install -r 路径\requirements.txt 例如pip install -r D:\python111\requireme...原创 2020-04-24 17:39:26 · 3139 阅读 · 0 评论 -
Anaconda安装
https://www.cnblogs.com/IT-LearnHall/p/9486029.html https://blog.csdn.net/qq_36015370/article/details/79484455 https://blog.csdn.net/z2858539804/article/details/81407456 https://blog.csdn.net/qq_36...原创 2019-10-29 15:25:58 · 328 阅读 · 0 评论 -
1024 程序员节日凑热闹 python实现
扔下面了 import turtle,time def drawGap(): turtle.penup() turtle.fd(5) def drawLine(draw): #绘制单段数码管 drawGap() turtle.pendown() if draw else turtle.penup() turtle.fd(40) drawGa...原创 2019-10-24 20:46:49 · 762 阅读 · 0 评论 -
笨办法学python3-练习 1. 第一个程序 课后练习
让你的脚本再打印出一行。 让你的脚本只打印一行。 在任一行的开头放一个#,看看会发生什么?试着弄明白这个符号的作用。 1. print("Hello World!") print("Hello Again") print("I like typing this.") print("This is fun.") print("Yay! Printing.") print("I'd muc...原创 2019-09-19 10:45:38 · 355 阅读 · 0 评论