- 博客(71)
- 收藏
- 关注
原创 苹果虚拟机
https://blog.youkuaiyun.com/qq_31429225/article/details/82950243最后屏幕调整为自适应
2021-11-13 18:45:36
996
原创 【Error】/usr/bin/env: ‘python’: No such file or directory
https://blog.youkuaiyun.com/think_ycx/article/details/108523290…
2021-09-26 16:55:52
191
原创 win10 子系统ubuntu 链接 vscode
1.在vscode 命令框输入 wsl2.在vscode remote 安装remote wsl3. 在vscode点击左边的电脑,选择ubuntu
2021-09-17 19:22:58
354
原创 python 截取两个符号之间的内容两种写法
In [1]: url = ‘http://www.google.com/’In [3]: begin=url.find(’//’)…: end=url.rfind(’/’)…: ss=url[begin+2:end]…: print(ss)www.google.comIn [7]: str1 = re.findall("//(.*?)/",url)[0]…: print(str1)www.google.com
2021-06-30 15:14:44
2939
原创 Linux Java
官网登录oracle下载安装包https://blog.youkuaiyun.com/weixin_30604651/article/details/97820732
2021-06-29 15:49:39
86
原创 AnalysisException: Not enough partition columns mentioned in query. Missing columns are: datestr
加上 PARTITION(datestr)INSERT OVERWRITE data_macinfo_new PARTITION(datestr)SELECT * FROM tmp_macinfo_new;
2021-06-21 19:52:51
1762
原创 No module named ‘jupyter_core‘
anaconda3环境下No module named ‘jupyter_core’python -m pip install six --upgrade --ignore-installed six -i https://pypi.tuna.tsinghua.edu.cn/simple/python -m pip install notebook -i https://pypi.tuna.tsinghua.edu.cn/simple/jupyter notebook
2021-06-05 14:44:25
2268
原创 2021-05-11
redis docker compose 安装步骤docker-compose up -dCreating network “redis_default” with the default driverCreating redis_redis_1 … errorERROR: for redis_redis_1 Cannot start service redis: OCI runtime create failed: container_linux.go:367: starting contain
2021-05-11 17:11:30
372
原创 conda环境配置
https://www.cnblogs.com/chamie/p/10009193.html终端输入:vim ~/.bashrc键盘大写“G”,在最末端输入:export PATH=~/anaconda2/bin:$PATH使其生效:source ~/.bashrc打印验证:echo ~/.bashrc然后再输入:conda就可以了。...
2021-03-15 15:56:14
282
原创 deepin桌面显示超出屏幕
系统为最新版桌面20.1,鼠标滚动桌面会左右移动,鼠标点动桌面也会左右移动,鼠标可以拖动桌面,系统桌面超出显示器,分辨率为1920.分辨率改过没用,显卡驱动装了试过没用,已经基本解决,win + shift + tab关掉窗口管理器就行了,但是不知道怎么重装窗口管理器,窗口管理器打开的话还是那个样...
2021-03-08 10:22:51
670
原创 Please commit your changes or stash them before you switch branches.
在主分支上git checkout .退回修改 然后切换到自己的分支在自己的分支上 git reset --hard origin/master然后再去执行make
2020-12-05 18:00:02
976
原创 常用指令
4.建立分支:git branch 分支名称查看分支:git branch -a切换分支:git checkout 分支名称(每次提交之前删除之前的分支,新建分支)5.暂存当前目录:git add .备注修改原因:git commit -m 备注由本地推到远程:git push origin lfy从分支中提交合并请求.到sig/sig目录点击分支,提合并请求8.如有特征修改继续在统一分支上提交9.git loggit reset f5ddbbf19c7e9366647746906b
2020-12-01 11:37:55
96
原创 “message“:“can not cast to JSONObject.“,
l=json.dumps(vv)data1= demjson.encode(data)data1=json.loads(data1)
2020-11-30 10:08:05
2300
原创 自动修复你的电脑未正确启动
https://zhuanlan.zhihu.com/p/270612827首先我们点击“高级选项”按钮,再进入“疑难解答”,进入“高级选项”,进入“命令提示符”,在命令提示符中输入“bcdboot c:\windows /l zh-cn”,然后回车确定,就会自动重启,注意其中“l”是字母(大写是L),不是数字1。空U盘安装PE不过重启之后,依然无法进入系统,而是提示了恢复,你的电脑/设备需要修复,无法加载操作系统,原因是无法验证文件的数字签名,文件:https://www.fujieace.co
2020-11-03 13:30:50
2979
1
原创 Max retries exceeded with url:
https://blog.youkuaiyun.com/buki26/article/details/85004675ConnectionError: HTTPConnectionPool(host=‘xxx.xx.xxx.xxx’, port=xxxx): Max retries exceeded with url: /api/v1/login/ (Caused by NewConnectionError(’<urllib3.connection.HTTPConnection object at 0x7f7c
2020-10-14 10:45:42
277
1
原创 visual 里ubuntu 连接xshell
https://blog.youkuaiyun.com/alexsjr/article/details/103972541https://www.cnblogs.com/wjunneng/p/9391103.html问题:anaconda: command not found解决方案:打开Terminal1、使用命令:sudo apt install vim 安装vim文本编辑器2、使用命令:vim ~/.bashrc 修改环境变量3、在文本最后添加命令:export PATH=~/anaconda3/b
2020-09-24 15:20:30
98
原创 仓库 “http://mirrors.aliyun.com/ubuntu eoan Release” 没有 Release 文件
sudo apt-get update提示E: 仓库 “http://mirrors.aliyun.com/ubuntu eoan Release” 没有 Release 文件。 解决办法https://blog.youkuaiyun.com/jh_luchi/article/details/102812031
2020-09-24 10:28:21
4946
1
原创 visual box 粘贴 win
https://blog.youkuaiyun.com/baidu_37503452/article/details/78707806
2020-09-24 09:40:42
95
原创 hbase安装
转载https://www.cnblogs.com/alpha-cat/p/11516427.html安装hbase时候需要首先安装zookeeperhbase中集成了单节点zk1.添加环境变量21 HBASE_HOME=/home/abby/module/hbase-1.2.0-cdh5.15.022 PATH=PATH:PATH:PATH:HBASE_HOME/bin2.配置hbase-1.2.0-cdh5.15.0/conf/hbase-env.shjava路径26 # The ja
2020-06-26 16:22:01
95
原创 repository are already installed but they are not correct for this package.
原文链接:https://blog.youkuaiyun.com/wz947324/article/details/80313490报错信息:The GPG keys listed for the “Webtatic Repository EL7 - x86_64” repository are already installed but they are not correct for this package.查资料得知:软件开发商在释出 RPM 文件时,会在其中添加数字签名,并释出用于验证数字签名的公钥。使
2020-06-25 23:28:38
1937
原创 Cannot retrieve repository metadata (repomd.xml) for repository:epel
centos yum 错误:Cannot retrieve repository metadata (repomd.xml) for repository: epel.qq_39590773 2019-05-03 18:41:40 2286 收藏版权在安装yum makecache 的时候出现了转载https://blog.youkuaiyun.com/qq_39590773/article/details/89790154Error: Cannot retrieve repository metada
2020-06-25 23:21:25
3136
原创 ping baidu.com
还有一步可能有用可能没用转载https://blog.youkuaiyun.com/m0_37572458/article/details/78564966
2020-06-25 22:20:14
298
原创 ping www.baidu.com
转载https://www.jianshu.com/p/820b4b4ca96e网关的前三段设置成与子网IP一致,最后一段设为1~254,此处设为1确定后,点击DHCP设置起始IP和结束IP这样设置:进入主机的网络适配器进入属性,点击Internet协议版本4(TCP/IPv4),然后点击属性子网掩码和默认网关参照第二步中NAT设置,IP地址前三段和默认网关一致,最后一段2~254都可以 我写的是200和虚拟机同IPDNS写的114和8:打开cmd(开始菜单——运行——cmd),输入ipc
2020-06-25 22:16:58
843
原创 XMLJAXBElementProvider.Text(String) is undefined
包倒错换成//import org.apache.hadoop.io.Text;
2020-06-21 20:44:54
402
原创 eclipse连接虚拟机中的hadoop集群
https://blog.youkuaiyun.com/qq_40309183/article/details/81905721
2020-06-15 10:52:56
270
原创 eclipse自动补全
https://blog.youkuaiyun.com/as1072966956/article/details/80672937
2020-06-05 10:18:25
127
原创 centos 图形界面打不开eclipse
eclipse版本换成32位,我的电脑是64位的虚拟机可能装的是32位所以之前装64的eclipse打不开
2020-06-04 21:36:32
217
原创 Name node is in safe mode
处于安全模式,所以需要退出安全模式,一般以如下方法可以解决:hadoop dfsadmin -safemode leavehttps://www.cnblogs.com/TTyb/p/8274246.html
2020-06-03 10:04:11
136
原创 Cannot open the disk E:/vmware/Ubuntu.vmdk or one of the snapshot disks it depends on.
Cannot open the disk ‘E:/vmware/Ubuntu.vmdk’ or one of the snapshot disks it depends on.解决方法:删除虚拟机系统目录下所有后缀名为 .lck 的文件和文件夹https://blog.youkuaiyun.com/guomutian911/article/details/42673147
2020-06-03 09:44:29
218
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人