会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
望山远而力行
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
16
17
18
19
20
21
22
23
24
···
36
下一页
2022年4月6日
Python查看云平台余额
摘要: 有时候想知道腾讯云或者阿里云账号上还剩下多少余额,又不想登录上去看,想了一下写个python脚本挺方便的,分享下 安装模块 pip install --upgrade tencentcloud-sdk-python pip install --upgrade aliyun-python-sdk-co
阅读全文
posted @ 2022-04-06 21:22 lucky_tomato
阅读(210)
评论(0)
推荐(0)
2022年3月26日
svn add 子目录文件目录无法递归
摘要: 解决方法: svn add . --no-ignore --force
阅读全文
posted @ 2022-03-26 10:25 lucky_tomato
阅读(240)
评论(0)
推荐(0)
2022年3月24日
debian9安装redis
摘要: 下载 wget http://download.redis.io/releases/redis-4.0.9.tar.gz 创建redis配置目录 mkdir /etc/redis/conf -p 解压 tar xf redis-4.0.9.tar.gz cd redis-4.0.9/ 复制文件 cd
阅读全文
posted @ 2022-03-24 15:23 lucky_tomato
阅读(85)
评论(0)
推荐(0)
debian9搭建svn环境
摘要: #下载 apt-get install subversion # 创建svn库 svnadmin create /data/svn_database 进入配置目录 cd /data/svn_database/conf 编辑权限 vim authz 输入一下内容,/表示根目录,rw表示可读写 [/]
阅读全文
posted @ 2022-03-24 14:55 lucky_tomato
阅读(136)
评论(0)
推荐(0)
2022年3月23日
debian9使用rsync拉取代码
摘要: 一、环境 拉取文件ip:192.168.1.2 代码服务器ip: 192.168.1.1 二、配置 默认情况下debian9已经安装了rsync 2.1代码服务器配置 创建文件: touch /etc/rsyncd.conf 写入以下数据 uid = root gid = root use chro
阅读全文
posted @ 2022-03-23 19:57 lucky_tomato
阅读(180)
评论(0)
推荐(0)
2022年3月18日
debian取消vim复制粘贴代码自动缩进
摘要: 在拷贝前输入:set paste
阅读全文
posted @ 2022-03-18 16:35 lucky_tomato
阅读(41)
评论(0)
推荐(0)
2022年3月17日
debian9默认nginx网页目录
摘要: /var/www/html/
阅读全文
posted @ 2022-03-17 17:49 lucky_tomato
阅读(134)
评论(0)
推荐(0)
django修改model内容生效
摘要: python manage.py makemigrations python manage.py migrate
阅读全文
posted @ 2022-03-17 11:11 lucky_tomato
阅读(81)
评论(0)
推荐(0)
2022年3月16日
debian9的python3.5报错lib/python3.5/site-packages/pymysql/connections.py
摘要: 这个问题是因为版本对不上 pip3 install pymysql==0.9.3 -i https://pypi.douban.com/simple/
阅读全文
posted @ 2022-03-16 18:55 lucky_tomato
阅读(92)
评论(0)
推荐(0)
debian9安装python3虚拟环境
摘要: apt-get install python3-venv # 生成一个test_env虚拟环境 python3 -m venv test_env # 进去虚拟环境 source test_env/bin/activate
阅读全文
posted @ 2022-03-16 18:41 lucky_tomato
阅读(200)
评论(0)
推荐(0)
上一页
1
···
16
17
18
19
20
21
22
23
24
···
36
下一页
公告