摘要: https://cn.ubuntu.com/download/server/step1 https://zhidao.baidu.com/question/110596899.html 安装完后拔掉U盘,输入以下命令开启远程连接 sudo apt-get install openssh-server 阅读全文
posted @ 2021-11-19 10:40 陈文超 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 虚拟环境https://blog.csdn.net/werewolf_st/article/details/47358767 ModuleNotFoundError: No module named 'swig_decoders'报错: 管理员权限运行:(没权限的话就把它修改成777权限)DeepS 阅读全文
posted @ 2021-11-18 16:43 陈文超 阅读(1029) 评论(0) 推荐(0) 编辑
摘要: 第一步:必备的插件:(1)先升级: # yum install -y update (2)再安装 gcc和make插件: #yum install gcc gcc-c++ #yum -y install gcc automake autoconf libtool make #yum groupins 阅读全文
posted @ 2021-11-12 16:52 陈文超 阅读(1105) 评论(0) 推荐(0) 编辑
摘要: 安装说明 1. 安装PaddlePaddle # CUDA10.1 python -m pip install paddlepaddle-gpu==2.1.0.post101 -f https://paddlepaddle.org.cn/whl/mkl/stable.html 或 # CPU(如果后 阅读全文
posted @ 2021-11-09 09:45 陈文超 阅读(754) 评论(0) 推荐(0) 编辑
摘要: pip install torch -i https://pypi.tuna.tsinghua.edu.cn/simple pip3 install opencv-python==4.1.2.30 pip install matplotlib pip install scipy pip instal 阅读全文
posted @ 2021-10-28 15:58 陈文超 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 如果是PyCharm端,则只需安装:paddlepaddle、paddleocr、requirements.txt 基于PaddleHub部署CPU版本的PaddleOCR实操过程记录。 PaddleOCR:release/2.2分支 PaddlePaddle 2.1.3 Paddlehub 2.1 阅读全文
posted @ 2021-10-25 11:33 陈文超 阅读(1657) 评论(0) 推荐(0) 编辑
摘要: import java.util.concurrent.*; ... ... ...{ ExecutorService executorService = new ThreadPoolExecutor( 3,//核心线程池大小 5,//最大线程池大小 1L,//线程最大空闲时间 TimeUnit.S 阅读全文
posted @ 2021-09-01 16:59 陈文超 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 在终端中输入命令: 32位: wget http://www.rarsoft.com/rar/rarlinux-4.0.1.tar.gz 64位 wget http://www.rarlab.com/rar/rarlinux-x64-5.3.0.tar.gz 下载对应的rar安装包,可以看到明显有个 阅读全文
posted @ 2021-08-25 15:08 陈文超 阅读(1075) 评论(0) 推荐(0) 编辑
摘要: 1. PCRE目前最新版本为8.45,可以 点这里进行下载。 2. 使用tar -zxvf pcre-8.45.tar.gz进行解压。 3. 运行 chmod -R 777 pcre-8.45 对当前文件夹授予全部读写权限。 4. 切换到/pcre-8.45目录下,运行 ./configure 进行 阅读全文
posted @ 2021-08-25 10:07 陈文超 阅读(1445) 评论(0) 推荐(0) 编辑
摘要: 1.保证tomcat在本机正确安装,即双击startup.bat能够正常开启tomcat服务 保证正常后双击shutdown.bat将服务关闭 2.设置环境变量 变量名:CATALINA_HOME 变量值:tomcat安装地址 3.编辑path变量: %CATALINA_HOME%\bin 4.执行 阅读全文
posted @ 2021-08-24 10:46 陈文超 阅读(2064) 评论(0) 推荐(0) 编辑