一、手动安装 1、安装wine $ sudo add-apt-repository ppa:wine/wine-builds $ sudo apt-get update $ sudo apt-get install winehq-devel 或下载稳定版本 $ sudo apt-get instal ...
分类:
系统相关 时间:
2021-01-12 11:23:52
阅读次数:
0
yum install -y yum-utils device-mapper-persistent-data lvm2 yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo --RH ...
分类:
其他好文 时间:
2021-01-12 11:22:07
阅读次数:
0
先导包,pip install torchsummary 然后 from torchsummary import summary model = FPN() y = summary(model, (3, 224, 224), device="cpu") print(y) ...
分类:
其他好文 时间:
2021-01-12 11:17:57
阅读次数:
0
Ubuntu 18.04 (Bionic) 安装 MongoDB (Install MongoDB Community Edition on Ubuntu) 查看 Ubuntu 版本 lsb_release -a Distributor ID: Ubuntu Description: Ubuntu ...
分类:
数据库 时间:
2021-01-12 11:08:09
阅读次数:
0
1、安装过程中常见的问题 git clone 提示 ssl 错误 # 一般是由于时间不同步, 或者网络有问题导致的 # 可以尝试下载 releases 包 pip install 提示 ssl 错误 # 参考第一条解决 pip install 提示 download 错误 # 一般是由于网络不好, ...
分类:
其他好文 时间:
2021-01-12 10:58:33
阅读次数:
0
虚拟机克隆 a. vim /etc/udev/rules.d/70-persistent-net.rules 更改网卡名 b. vim /etc/sysconfig/network-scripts/ifcfg-eth0 更新网卡 c. vim /etc/sysconfig/network 更改主机名 ...
分类:
其他好文 时间:
2021-01-12 10:50:26
阅读次数:
0
1.先安装一个插件: npm install vue-wechat-title 2.在mian.js 中引入以下代码: import vueWechatTitle from "vue-wechat-title"; Vue.use(vueWechatTitle); 3.在App.vue中的<route ...
分类:
其他好文 时间:
2021-01-12 10:49:42
阅读次数:
0
1.临时提速 在 pip install 包名 后面加上 -i + 镜像地址,这样 pip 安装时即可成倍的提速了。 国内主要镜像地址如下: 清华:https://pypi.tuna.tsinghua.edu.cn/simple 阿里云:http://mirrors.aliyun.com/pypi/ ...
分类:
其他好文 时间:
2021-01-12 10:46:04
阅读次数:
0
安装redis模块 pip install redis redis的使用: import redis rs = redis.Redis(host='192.168.1.109', port=6379) rs.set("name", 'liuxuelin') print(rs.get("name")) ...
分类:
编程语言 时间:
2021-01-12 10:41:37
阅读次数:
0
搭建在单一服务器 基于官方文档 http://hadoop.apache.org/docs/r2.7.2/hadoop-project-dist/hadoop-common/SingleCluster.html#Pseudo-Distributed_Operation 1、配置:hadoop-env ...
分类:
其他好文 时间:
2021-01-11 11:23:14
阅读次数:
0