
简介
该用户还未填写简介
擅长的技术栈
可提供的服务
暂无可提供的服务
opencv图像处理,利用霍夫变换直线检测,进行倾斜图像矫正

gitlab连接报错: debug1: Authentications that can continue: publickey,passwordPermission denied, please try again.

ubuntu 安装 pytorch

如题,使用VMware虚拟机安装的Ubuntu查看网络信息时fifconfig没有该命令,tcpdump也没有查看找到原因原来是没有net-tools但是在sudo apt install 时却报错unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend),is another process using it?首先
今天执行docker时候报错,docker: permission denied while trying to connect to the Docker daemon socket atXXX。查了下,原因是因为 docker进程使用的是unix socket而不是TCP端口,默认情况下,unix socket属于root 用户,需要有root权限才能访问。意思是无法连接docker,检查一下

LeetCode 5 各种解法详解 python题目:寻找一个字符串的最长回文子串。解法一暴力法时间复杂度O(N3)O(N^3)O(N3)这种方法思路就比较简单,意思就是字符串里i!=ji != ji!=j,但是s[i]==s[j],那么从i到j的这段子串就有可能是回文串,python里只要s[::-1]就能把字符串翻转进而判断一个字符串是否回文串。class Solution:...







