码迷,mamicode.com
首页 >  
搜索关键字:office install error    ( 73195个结果
python连接mysql数据库把取数据存入数据库
安装pymysql库 pip install pymysql 建存储数据表 CREATE DATABASE `stock` /*!40100 DEFAULT CHARACTER SET utf8 */ /*!80016 DEFAULT ENCRYPTION='N' */; -- stock.stoc ...
分类:数据库   时间:2021-06-25 17:19:20    阅读次数:0
windows下jupyter notebook的安装及配置
安装流程 1.安装Anaconda 2.进入Anaconda终端,conda install jupyter notebook 安装 3.配置jupter notebook文件存放路径 jupyter notebook --generate-config 查看配置文件位置(jupyter_noteb ...
分类:Windows程序   时间:2021-06-25 17:06:19    阅读次数:0
新建的SpringBoot项目启动后访问报Whitelabel Error Page This application has no explicit mapping
这个错误的出现一般是SpringBoot的启动类(类名上面有@SpringBootApplication注解 )与controller包不在同一个目录下,解决方案就是把启动类和controller包放在同目录下就可以啦。 这个错误出现需要将Controller层中的@Controller注解改为@R ...
分类:移动开发   时间:2021-06-25 16:59:24    阅读次数:0
Ubuntu18.04下make menuconfig缺少ncurses库
问题描述:这类问题的解决办法,提示少什么我们直接用sudo apt-get install 安装缺少的东西即可 如果使用make menuconfig的方式配置内核,又碰巧系统没有安装ncurses库(ubuntu系统 默认就没有安装此库),就会出现错误,错误信息大体上如下: kent@hu:~/w ...
分类:系统相关   时间:2021-06-25 16:56:33    阅读次数:0
Git安装与配置
Linux下安装git 包管理器方式安装 $yum install git 从源代码安装 $tar -jxvf git-2.19.0.tar.bz2 $cd git-2.19.0 安装方法在INSTALL文件当中,参照其中的指示完成安装。 下面的命令将Git安装在/usr/local/bin中 $m ...
分类:其他好文   时间:2021-06-25 16:56:13    阅读次数:0
CentOS7 xfce
xfce dnf install Thunar gdm openssh-askpass orage polkit-gnome thunar-archive-plugin thunar-volman tumbler xfce4-appfinder xfce4-panel xfce4-power-man ...
分类:其他好文   时间:2021-06-24 18:28:02    阅读次数:0
nginx重启报错
[nginx@p0-hfssp-healthos-web02 sbin]$ sudo ./nginx -s reloadnginx: [error] invalid PID number "" in "/home/nginx/openresty/nginx/logs/nginx.pid" 发生这个错 ...
分类:其他好文   时间:2021-06-24 18:14:17    阅读次数:0
Cannot set LC_ALL to locale en_US.UTF-8: No such file or directory
报错如下: Cannot set LC_ALL to locale en_US.UTF-8: No such file or directory 解决方式: apt-get install -y locales locale-gen en_US.UTF-8 ...
分类:其他好文   时间:2021-06-24 18:14:03    阅读次数:0
.py转.exe
https://blog.csdn.net/Nire_Yeyu/article/details/104683888/ 安装:pip install pyinstaller 安装时报错,原因是环境变量需要在多配一个路径 打包为exe,版本尽量选择python3.6+32位版本,因为win64位系统向下 ...
分类:其他好文   时间:2021-06-24 18:10:33    阅读次数:0
ubuntu之压缩与解压
前言 tar是Linux常见的一种归档文件(原生不包括压缩功能) gzip是gnu/Linux的一种压缩文件工具,算法是基于 DEFLATE,文件是gz,可以和tar组合。 zip是一种规范开放的压缩文件,算法不定,但主要是用 DEFLATE rar的算法专有,但发行时附送解码器允许解码器再开发,编 ...
分类:系统相关   时间:2021-06-24 18:03:52    阅读次数:0
73195条   上一页 1 ... 8 9 10 11 12 ... 7320 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!