centos 7 已经自带 python 2.7.15,这里需要安装 python 3 [root@pwm]# pythonPython 2.7.15 |Anaconda, Inc.| (default, Dec 14 2018, 19:04:19) [GCC 7.3.0] on linux2 第一 ...
分类:
编程语言 时间:
2020-07-29 10:26:45
阅读次数:
82
#!/bin/sh ##gcc-6##debian-9.13,buildin glibc version is 2.24######################################cat <<eof>>/etc/profileexport DISPLAY=192.168.157.1: ...
分类:
数据库 时间:
2020-07-29 00:45:50
阅读次数:
120
废话不多说了。一切见:setup-oracle11g.sh #!/bin/sh ##gcc-8 ###################################### cat <<eof>>/etc/profile export DISPLAY=192.168.157.1:0 alias cl ...
分类:
数据库 时间:
2020-07-28 17:09:12
阅读次数:
86
#ifndef MY_BIGN_H#define MY_BIGN_H 1#pragma GCC system_header#include<cstring>#include<algorithm>#include<iostream>using std::max;using std::istream;u ...
分类:
其他好文 时间:
2020-07-28 16:52:02
阅读次数:
67
安装编译 git 时需要的包 yum install -y curl-devel expat-devel gettext-devel openssl-devel zlib-devel yum install -y gcc perl-ExtUtils-MakeMaker 删除已有的 git yum r ...
分类:
其他好文 时间:
2020-07-27 23:54:02
阅读次数:
84
作者 | 丁海洋、孙健波 业界要闻 SUSE 计划收购 Rancher Labs SUSE 计划收购 RANCHER LABS,旨在成为企业 Kubernetes 管理市场的领导者。 CNCF 计划发布新的与 K8s 安全相关的认证项目 该项目为 CKS(Certified Kubernetes S ...
分类:
其他好文 时间:
2020-07-27 17:42:43
阅读次数:
88
题意: 给定一个序列ai,问序列中其他数中有多少个数是它的约数 思路: 暴力求法会超时。O(n²) 最优解:先储存每个数的个数,遍历x,每个x的倍数加上x的个数 注:最后每个数的答案要-1(减去本身) Code: #pragma GCC optimize(3) #pragma GCC optimiz ...
Ubuntu 20.04 Install Guest Additions for VirtualBox时有报错: This system is currently not set up to build kernel modules.Please install the gcc make perl ...
分类:
系统相关 时间:
2020-07-26 23:00:43
阅读次数:
94
对于源文件较多的 c/c++项目,直接在 shell 中使用 gcc/clang 进行编译会十分麻烦,makefile 可以解决这一问题。Makefile 记录了项目的编译规则,当使用 make 命令进行项目的编译时,make 命令会使用 makefile 中记录的规则,一步步地编译、链接,生成目标 ...
分类:
其他好文 时间:
2020-07-26 15:40:29
阅读次数:
62
Dinic模板 #pragma GCC optimize(2) #include <bits/stdc++.h> using namespace std; const int maxn = 1e5 + 10; //const int maxm = 1e3 * 2 + 10; const int in ...
分类:
其他好文 时间:
2020-07-26 01:58:19
阅读次数:
59