win10环境下永久修改Python的pip源 首先在window的文件夹窗口输入 : %APPDATA% ,回车,打开文件夹然后在底下新建pip文件夹,然后到pip文件夹里面去新建个pip.ini,然后再里面输入内容12345[global]index-url = https://mirrors.aliyun.com/pypi/simple/[install]trusted-host=mirrors.aliyun.com 2023-04-12 Python #pip #windows
CentOS7搭建SOCKS5代理服务器 安装12345678910# 安装依赖扩展yum install -y gcc openldap-devel pam-devel openssl-devel# 下载ss5包wget http://jaist.dl.sourceforge.net/project/ss5/ss5/3.8.9-8/ss5-3.8.9-8.tar.gztar -vzx -f ss5-3.8.9-8.tar.gzcd ss 2023-04-10 Centos #Centos7 #代理
Centos7同步时间 使用ntpdate同步时间目前比较常用的做法就是使用ntpdate命令来同步时间,使用方法如下:另外再分享下几个常用的ntp server,如果需要更多可以前往:http://www.ntp.org.cn获取 123456#安装ntpdateyum -y install ntpdate#同步时间ntpdate -u pool.ntp.org#同步完成后,date命令查看时间是否正确date 使 2023-04-10 Centos #Centos
Python下requests库使用socks5代理 使用socks5代理 安装依赖pip install requests requests[socks] 123456```Pythonimport requests session = requests.session() session.proxies = {'https': f'socks5://{ip} 2023-04-10 Python #Python #requests
Python安包报错ERROR:Could not find+a+version……解决方法 问题描述1ERROR: Could not find a version that satisfies the requirement tensorflow==2.0.0 (from versions: none) 解决方法12# 不止要选择pip源,还要信任它的来源,只完成第一步是不可以的喽pip install fonttools -i http://pypi.douban.com/simp 2023-04-08 Python #Python #笔记
命令行下windows防火墙操作 设置防火墙服务为自动1sc config sharedaccess start=auto 开启防火墙服务1net start sharedaccess 开启端口1netsh advfirewall firewall add rule name="mysql" dir=in protocol=tcp localport=3306 action=allow 2023-04-08 window #防火墙
Celery5.2.7版本配置详解 常规配置123456789101112131415161718192021222324252627282930313233# 获取任务队列broker_url=# 保存任务队列result_backend=# 接受内容格式accept_content = ['json']# 保存数据格式化方式result_accept_content = ['json'] 2022-11-17 Python #Celery #工具
Homestead环境安装swoole问题 CLI 执行环境的 PHP 版本切换 切换 cli 运行模式默认的 PHP 版本 (选择8.0) 1update-alternatives --config php 切换 phpize 版本(选择8.0) 1update-alternatives --config phpize 切换 php-config 版本(选择8.0) 1update-alternatives --config php-co 2022-11-17 PHP #工具 #Homestead
MySQL8.0关闭log-bin功能 简介用来记录数据发生或潜在发生更改的SQL语句,并已二进制形式保存到磁盘中,例如更改数据库表和更改内容的SQL语句都会记录到binlog里,但是对库表等内容的查询不会记录。 作用当有数据写入到数据库时,还会同时把更新的SQL语句写入到对应的binlog文件里,这个文件就是上文说的binlog文件。使用mysqldump备份时,只是对一段时间的数据进行全备,但是如果备份后突然发现数据库服务器故障,这 2022-11-17 Mysql #Mysql8.0
supervisor和Python多进程multiprocessing使用子进程残留问题 问题使用supervisor管理Python程序时, 当Python程序中使用multiprocessing模块,supervisor的stop和restart指令只会杀死主进程,子进程会残留下来 解决killasgroup可以说是专门适配了Python的multiprocessing模块,如果配置了stopasgroup=true,那么killasgroup也会默认为true,所以我们只需要配置 2022-10-31 Python #python问题 #supervisor