泰恩数据-专注数据技术泰恩数据

我的文章

玩转jupyter notebook 7-泰恩数据

玩转jupyter notebook 7

阅读(48)

1. jupyter notebook汉化 (1)安装中文语言包 pip install jupyterlab-language-pack-zh-CN (2)jupyter notebook-setting-language-选择中文包

给docker配置 HTTP/HTTPS 网络代理

阅读(783)

使用Docker的过程中,因为网络原因,通常需要使用 HTTP/HTTPS 代理来加速镜像拉取、构建和使用。下面是常见的三种场景。 为 dockerd 设置网络代理 “docker pull” 命令是由 docker...

如何为debian设置全局代理

阅读(926)

方法一 添加代理设置,添加环境变量 export http_proxy="http://127.0.0.1:8123" export https_proxy="http://127.0.0.1:8123" source /etc/profi...

debian国内源提示签名错误

阅读(453)

Debian改换国内源,apt update 提示签名错误。 可以通过更新debian-archive-keyring解决。 安装新版本debian-archive-keyring sudo apt-get install debian-a...

Aws Lightsail root登录启动脚本-泰恩数据

Aws Lightsail root登录启动脚本

阅读(645)

创建实例时,如图点击:Add launch script 输入脚本代码: echo root:urpassword |sudo chpasswd root sudo sed -i 's/^.*PermitRootLogin.*/Permit...

解决xshell无法在vim中复制粘贴

阅读(526)

ssh xshell 连接在vim中无法用 ctrl+insert 复制黏贴 修改.vimrc set mouse=c vi的三种模式:命令模式,插入模式,可视模式.鼠标可以启动于各种模式中: The mouse can be enable...