一、在Linux下的C语言编程所需工具(下面所列举的都是我编程所用的工具) 1.文本编辑器 Vim 2.编译链接工具 gcc 3.调试器 gdb 4.项目管理工具 make和makefile 二、VIM文本编辑器的模式和配置 vim有三种模式,分别是命令行模式,插入模式,还有底行模式 命令行模式(用 ...
分类:
编程语言 时间:
2021-02-15 12:38:34
阅读次数:
0
1、打开centos的yum文件夹 cd /etc/yum.repos.d/ 2、用wget下载repo文件 wget http://mirrors.aliyun.com/repo/Centos-7.repo 如果wget命令不生效,说明还没有安装wget工具, yum -y install wge ...
分类:
其他好文 时间:
2021-02-15 12:37:24
阅读次数:
0
需要引入geopy库 pip install geopy 安装即可 import requests from bs4 import BeautifulSoup import pandas as pd import json import os from tqdm import tqdm from c ...
分类:
编程语言 时间:
2021-02-15 12:35:11
阅读次数:
0
centos6 yum install git yum install http://opensource.wandisco.com/centos/6/git/x86_64/wandisco-git-release-6-1.noarch.rpm yum update git centos7 yum ...
分类:
其他好文 时间:
2021-02-15 12:32:55
阅读次数:
0
服务器下安装nginx sudo apt-get install nginx nginx的文件配置 服务地址:/etc/init.d/nginx 配置地址:/etc/nginx/ 如:/etc/nginx/nginx.conf Web默认目录:/usr/share/nginx/http/ 如:usr ...
分类:
其他好文 时间:
2021-02-15 12:10:22
阅读次数:
0
flask版本0.12.5 运行时会报以上错误,原因是因为werkzeug的版本大于等于1.x版本。 解决办法,降低werkzeug的版本即可 pip uninstall Werkzeug pip install Werkzeug==0.16.1 ...
分类:
其他好文 时间:
2021-02-15 11:52:49
阅读次数:
0
这篇随笔主要给出了Hi3559AV100-自己编译了u-boot、kernel及rootfs后,出现烧写错误或者烧写后板载无法启动的解决思路。 问题 (1)对于 u-boot 为官方的,kernel 为自己的生成的话,开机过不了,kernel 镜像无法挂载 现象:(原正常u-boot界面的提示符为h ...
分类:
Web程序 时间:
2021-02-10 13:25:15
阅读次数:
0
HTTP Content Type 文件扩展名 Content-Type 文件扩展名 Content-Type .* application/octet-stream .tif image/tiff .001 application/x-001 .301 application/x-301 .323 ...
分类:
Web程序 时间:
2021-02-10 13:19:44
阅读次数:
0
linux下配置邮件发送器postfix 开始之前必须先配置 dns域名解析 详见另一篇博客 安装postfix服务器并进行配置 可能postfix在系统安装过程中已经安装了此服务,可以使用下面的命令查询 rpm -q postfix 如果没有可以手动安装: yum install -y postf ...
分类:
系统相关 时间:
2021-02-10 13:17:31
阅读次数:
0
LDAP安装、LDAP数据迁移、LDAP卸载指南及PHPldapAdmin管理软件安装 第一节 LDAP安装篇 第一步 yum安装ldap yum -y install openldap compat-openldap openldap-clients openldap-servers openld ...
分类:
Web程序 时间:
2021-02-10 13:03:06
阅读次数:
0