摘要: 2024年至今交易记录 Statement: 70066500 - Liu Ziyi Raw Trading Ltd Account: 70066500 Name: Liu Ziyi Currency: USD Leverage: 2024 April 2, 09:13 Closed Transac 阅读全文
posted @ 2024-03-26 16:28 Eswing 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 概要:使用Aedes包实现MQTT服务器,在前端使用mqtt.js订阅发布消息 1 服务端的实现 Simple plain MQTT server const aedes = require('aedes')() const server = require('net').createServer( 阅读全文
posted @ 2022-03-04 16:19 Eswing 阅读(612) 评论(0) 推荐(0) 编辑
摘要: 添加Windows任务计划自动运行脚本是要要注意几个问题: 1、采用绝对路径 在运行bat脚本时,是从当前路径运行(相当于点击脚本运行),所以使用相对路径没有问题。但是在运行ps1脚本时,采用powershell程序运行,运行的路径时Powershell.exe的路径,所以采用相对路径会产生错误。 阅读全文
posted @ 2022-02-10 10:06 Eswing 阅读(124) 评论(0) 推荐(0) 编辑
摘要: conda list #查看环境中已经安装了的软件包 conda env list # 查看当前存在那些虚拟环境,或者 conda info -e conda update conda # 检查更新当前的conda版本 conda install package_name=版本号 # 下载安装包 c 阅读全文
posted @ 2022-02-08 17:13 Eswing 阅读(23) 评论(0) 推荐(0) 编辑
摘要: pip --version # 查看已经安装了的pip版本 pip install -U pip # 升级pip pip list # 查看当前已经安装好了包及版本, 或 pip freeze pip install package_name==version # 下载安装包 pip uninsta 阅读全文
posted @ 2022-02-08 17:10 Eswing 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 修改pip安装源 全局修改 阿里源: https://mirrors.aliyun.com/pypi/simple/ 清华源: https://pypi.tuna.tsinghua.edu.cn/simple pip config set global.index-url https://pypi. 阅读全文
posted @ 2022-02-08 17:06 Eswing 阅读(77) 评论(0) 推荐(0) 编辑