pycharm

Python folder structure for project directory and easy import

感情迁移 提交于 2021-01-26 09:46:02
问题 My team has a folder of several small projects in python3. Amongst them, we have a utility folder with several utility functions, that are used throughout the projects. But the way to import it is very uncomfortable. This is the structure we use: temp_projects util storage.py geometry.py project1 project1.py project2 project2.py The problem is that the import in the projects looks terrible: sys.path.insert(1, os.path.join(sys.path[0], '..')) import util.geometry util.geometry.rotate

究极全面炼丹教程,使用PaddleOCR并自己训练模型,太上老君看了都说好

筅森魡賤 提交于 2021-01-25 11:05:29
使用PaddleOCR,训练自己的模型 前言______PaddleOcr的安装与准备工作 资料准备 1. 下载icdar2015图片集 2. 下载icdar2015数据集配套的标注文件 3.组织数据集路径 4.下载预训练模型 5.组织预训练模型路径 6.修改配置文件 ~~设置完成,开始训练~~ 到了紧张刺激的DEBUG环节才对 如何制作自己的数据集? 模型评估与模型检查 ps:为方便读者文章中需要用到的文件均使用我的网盘分享下载,同时也会给出官网下载地址 前言______PaddleOcr的安装与准备工作 1.PaddleOcr相关组件安装我在上一个博客中已经介绍完毕→ PaddleOcr安装与使用全程指南 ←点击跳转 2.下载PaddleOcr官方文件包, https://kyc592.lanzous.com/i5C7Gkojm7c 密码:kyc 或官网下载地址:https://gitee.com/paddlepaddle/PaddleOCR 然后解压到项目文件夹的根目录下。 一定确保按照前一篇博客操作完毕,Paddleocr可以正常运行,尽量减少待会出现的极 其 繁 重的debug工作。 至此完成准备工作。 资料准备 训练自己的模型,需要的资料有: ①训练用的图片集 ②测试用的图片集 ③前面两个图片集配套的标注文件 ④预训练模型 1. 下载icdar2015图片集 演示采用的

windows环境 python 与 cx_oracle 连接 记录

你。 提交于 2021-01-24 08:56:23
一、我的环境 OS: 64位 windows7 oracle client: instantclient_11_2 ,为了连接pl/sql,只能32为 python:python-3.5.4 32位 cx_oracle:cx_Oracle-5.3-11g.win32-py3.5 下载地址: https://pypi.python.org/pypi/cx_Oracle/5.3 下载低版本cx_Oracle版本 pycharm:pycharm-professional-2017.3.2 64位 二、安装备忘 (1)环境选择对了,很容易的事情,选不对,会遇到N多坑,我遇到了至少6种错误, 后来全部卸载, 选择了32位的python和相关版本,问题解决。 三种软件的位数要一致, 要选择对应的版本: cx_oracle \ python \ oracle client (关键是oci.dll ) oracle 数据库,pccharm等无所谓。 (3) python3.4安装后,自带pip, 但安装 cx_oracle包时, 不要 pip install cx_oracle , 最好下载 exe可执行的cx_oracle版本, 安装编译后的whl文件,也会有点问题。 cx_oracle 可执行文件安装,会自动拷贝到 python环境 site-package目录。 (4)oracle

I couldn't get past this error in open cv? [duplicate]

[亡魂溺海] 提交于 2021-01-24 07:21:58
问题 This question already has answers here : Python openCV error while using cv2.imread() (3 answers) Closed 5 months ago . cv2.error: OpenCV(4.4.0) C:\Users\appveyor\AppData\Local\Temp\1\pip-req-build-2b5g8ysb\opencv\modules\highgui\src\window.cpp:376: error: (-215:Assertion failed) size.width>0 && size.height>0 in function 'cv::imshow' 回答1: This problem says that an assertion is failed. If the file doesn't exist in the given path,cv2 returns this error. So check if the file exists in your given

I couldn't get past this error in open cv? [duplicate]

佐手、 提交于 2021-01-24 07:20:40
问题 This question already has answers here : Python openCV error while using cv2.imread() (3 answers) Closed 5 months ago . cv2.error: OpenCV(4.4.0) C:\Users\appveyor\AppData\Local\Temp\1\pip-req-build-2b5g8ysb\opencv\modules\highgui\src\window.cpp:376: error: (-215:Assertion failed) size.width>0 && size.height>0 in function 'cv::imshow' 回答1: This problem says that an assertion is failed. If the file doesn't exist in the given path,cv2 returns this error. So check if the file exists in your given

Python集成开发环境

杀马特。学长 韩版系。学妹 提交于 2021-01-22 12:56:37
Python语言简单易学,功能强大,由于有丰富的第三方库,使得我们可以站在巨人的肩膀上,用Python来解决问题效率极高,广泛地用于Web开发、系统运维、网络爬虫、科学技术、机器学习、数据分析、数据可视化等场景。 Python的开发工具有很多,除了Python自带的IDLE,还有Vim、Pycharm、Sublime Text、Atom、VSCode、Eclipse等等。对于初学者,到底选用什么样的开发环境呢? Pycharm:如果拿不定注意,建议选用Pycharm社区版,完全开源免费,集成了Python开发所需的各种工具和特性,真是“一旦拥有,别无所求”。PyCharm社区版支持项目管理,编辑器提供智能代码完成、代码检查、动态错误突出显示和快速修复,以及自动代码重构和丰富的导航功能。内置开箱即用的大量工具,比如,集成调试器和测试运行器、Python探查器、交互式Python控制台、内置终端,并支持Git、CVS、Subversion等主要的VCS版本控制软件。 Pycharm的专业版本是付费的,除了社区版的所有功能外,还支持Django、Flask等Web开发框架、支持数据库和SQL工具、支持Anaconda以及matplotlib和NumPy等多种科学工具包,更好的支持企业级的开发。网友评价:"您可以在一个位置访问命令行、连接到数据库、创建虚拟环境以及管理版本控制系统

selenium+python环境搭建

随声附和 提交于 2021-01-22 09:40:37
selenium介绍: selenium1,也称为seleniumRC或者Remote Control。就是selenium的原本项目。RC是在浏览器启动后,使用js来驱动浏览器的操作。为什么叫RC呢?因为RC的设计是可以支持控制远程服务器上的selenium server来操作远程端的浏览器。 selenium2,也称为selenium webdriver。webdriver原来是另一个自动化测试工具,后与selenium 合并了。webdriver直接调用浏览器本身对自动化支持的接口来驱动浏览器的操作。故名思义,它将有不同的driver来驱动不同系统上不同的浏览器 简单说,selenium项目原本的工具是IDE、RC、grid,然后集成的一个框架。也是目前最流行的的PC B/S架构自动化测试框架。 一、安装python 链接: https://www.python.org/downloads/ 根据自己熟悉版本下载,大体上有2.X和3.X两个版本,新手建议直接入手python3,语法比python2简单易学;安装完成python的安装目录添加到环境变量,方便以后命令窗口符调试;    安装成功python会默认下载好pip和setuptools,python2可能需要另外下载(解压包然后easy_insatll 命令安装) 二、安装selenium pip install

In pycharm ImportError: DLL load failed: The specified module could not be found. while importing facerecognition

倖福魔咒の 提交于 2021-01-22 07:52:43
问题 I am getting this error while importing "face_recognition" in Pycharm but it runs perfectly fine from "anaconda command prompt" . I don't understand why i am getting error in Pycharm but not in Anaconda cmd. I can successfully import cv2 in Pycharm . Can someone tell me how can i run it in pycharm? Below is complete error :- Traceback (most recent call last): File "C:/Users/r/PycharmProjects/Practise AI/check.py", line 1, in <module> import face_recognition File "C:\ProgramData\Anaconda3\lib

In pycharm ImportError: DLL load failed: The specified module could not be found. while importing facerecognition

こ雲淡風輕ζ 提交于 2021-01-22 07:50:26
问题 I am getting this error while importing "face_recognition" in Pycharm but it runs perfectly fine from "anaconda command prompt" . I don't understand why i am getting error in Pycharm but not in Anaconda cmd. I can successfully import cv2 in Pycharm . Can someone tell me how can i run it in pycharm? Below is complete error :- Traceback (most recent call last): File "C:/Users/r/PycharmProjects/Practise AI/check.py", line 1, in <module> import face_recognition File "C:\ProgramData\Anaconda3\lib

PyCharm的调试

廉价感情. 提交于 2021-01-22 07:35:42
1.设置断点 2.debug模式运行 F8 下一行代码:若函数A内存在子函数a时,不会进入子函数a内执行单步调试,而是把子函数a当作一个整体,一步执行 下一行代码:若函数A内存在子函数a时,会进入子函数a内执行单步调试 执行下一行但忽略libraries(导入库的语句)(目前感觉没什么用) 当目前执行在子函数a中时,选择该调试操作可以直接跳出子函数a,而不用继续执行子函数a中的剩余代码。并返回上一层函数 直接跳到下一个断点 查看当前位置所有局部变量:print(locals()) 查看全局变量: print(globals()) Pycharm 的错误提示设置 https://www.jianshu.com/p/47b6e7ce4639 来源: oschina 链接: https://my.oschina.net/u/4282181/blog/3630917