摘要:
这里只将如何部署hive,关于docker的安装部署可以参考这篇文章Docker的简单使用 安装hive git clone git@github.com:big-data-europe/docker-hive.git # 注:本文所有docker-compose都是在docker-hive目录下执 阅读全文
摘要:
驱动器:com.mysql.cj.jdbc.Driver 阅读全文
摘要:
执行程序 ./spoon.sh 报错内容 Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=256m; 解决方法 从启动脚本中把 -XX:MaxPermSize=256m 参数删掉 阅读全文
摘要:
修改密码 1.查看初始密码 grep 'temporary password' /var/log/mysqld.log 2.连接 MySQL, 输入下面代码, 回车后输入上面密码 mysql -uroot -p 3.选数据库 use mysql; 4.将authentication_string置空 阅读全文
摘要:
在jupyter notebook上安装xgboost pip install xgboost 安装完成后运行 import xgboost 发生报错 报错内容如下: XGBoostError: XGBoost Library (libxgboost.dylib) could not be load 阅读全文
摘要:
这样问题有可能是浏览器把加载图片的js屏蔽掉了,开启方式如下: 1、点击查看网站信息 2、找到设置,选择隐私设置与安全性,在右侧不安全内容的选择改为允许(默认的是屏蔽) 设置之后,重新运行代码,就看到可以显示图形了 from: https://www.pinggu.com/post/details/ 阅读全文
摘要:
报错内容: info There appears to be trouble with your network connection. Retrying... 尝试无果: 方法一: npm config set registry https://registry.npm.taobao.org np 阅读全文
摘要:
安装脚本 /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)" 遇到的问题: 检测到你不是最新系统,需要自动升级Ruby后失败的: 解决方法: rm -rf /Users/$(wh 阅读全文
摘要:
1.前往https://cr.console.aliyun.com/,注册、登录找到“镜像加速器”。复制加速器地址 2.在Docker Desktop下配置加速器 在任务栏点击 Docker Desktop 应用图标 → Perferences,在左侧导航菜单选择 Docker Engine,在右侧 阅读全文
摘要:
方法一:pip3 install python-geohash 方法二: 1.安装 pip3 install geohash 2.进入包的下载目录 /usr/local/lib/python3.5/dist-packages 3.mv Geohash geohash 4.cd geohash 修改_ 阅读全文