1:使用命令安装openssh-server sudo apt-get install openssh-server openssh-client 2:这是因为没有更新apt-get,更新命令 sudo apt-get update 3:更新完之后执行 sudo apt-get install op ...
分类:
系统相关 时间:
2021-03-01 12:57:39
阅读次数:
0
编程时,偶尔需要伪造(模拟)数据,下面介绍如何使用Python伪造中文姓名。 1、安装库Faker # pip install Faker 2、导入并输出中文姓名 from faker import Faker fake = Faker("zh_CN") fake.name() 3、批量生成数据 N ...
分类:
编程语言 时间:
2021-02-27 13:39:58
阅读次数:
0
protoc 编译工具 windows 平台下载对应平台的 protobuf,并配置环境变量 protobuf linux 环境先安装依赖 sudo apt-get install autoconf automake libtool curl make g++ unzip git clone htt ...
分类:
其他好文 时间:
2021-02-27 13:31:02
阅读次数:
0
//全局安装 asar npm install asar -g //解包 asar e app.asar 文件夹 ...
分类:
其他好文 时间:
2021-02-27 13:30:05
阅读次数:
0
Eva would like to make a string of beads with her favorite colors so she went to a small shop to buy some beads. There were many colorful strings of b ...
分类:
其他好文 时间:
2021-02-27 13:26:28
阅读次数:
0
2021-02-26 22:54:13.146272: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1406] Created TensorFlow device (/job:localhost/replica:0/task:0/device ...
分类:
其他好文 时间:
2021-02-27 13:21:07
阅读次数:
0
Debian9 安装iftop工具 apt-get install iftop -y 常用的参数 -h(display this message),显示参数使用信息 默认是监控第一块网卡的流量 iftop -i 指定监控的网卡eth1 iftop -i eth1 -B 以bytes为单位显示流量(默 ...
分类:
其他好文 时间:
2021-02-27 13:20:12
阅读次数:
0
1.查看所有现有环境: conda info -e conda list:查看安装了哪些包。 conda install package_name(包名):安装包 conda env list 或 conda info -e:查看当前存在哪些虚拟环境 conda update conda:检查更新当 ...
分类:
其他好文 时间:
2021-02-27 13:11:50
阅读次数:
0
对于 Git 的编译安装,建议参考 BLFS 建议安装软件包 cURL-7.50.1 (needed to use Git over http, https, ftp or ftps), OpenSSL-1.0.2h, Python-2.7.12 可选软件包 PCRE-8.39, Subversio ...
分类:
其他好文 时间:
2021-02-26 13:17:04
阅读次数:
0
解决git clone慢 原命令:git clone https://github.com/xxx 替换为:git clone https://github.com.cnpmjs.org/xxx 解决npm install慢 换成阿里镜像源:npm config set registry https ...
分类:
其他好文 时间:
2021-02-25 12:13:34
阅读次数:
0