-
解决git pull origin main被拒绝的问题
报错如下:
(asr_llm_tts) PS D:\Works\Python\asr_llm-tts> git pull origin main
From github.com:lukeewin/ASR_LLM_TTS
branch main -> FETCH_HEAD
fatal: refusing to merge unrelated histories
解决方法:
git pull origin main --allow-unrelated-histories
git push origin main2024-12-02 15:20:36 0
-
昨天在淘宝中开了自己的一个网店。https://lukeewin.taobao.com
2024-11-16 17:15:22 0
-
vscode修改远程Python解释器版本,ctrl+shift+p,然后输入Python:Select Interpreter,点击进入,选择一个Python解释器版本,具体可以参考官方的这篇文章:https://code.visualstudio.com/docs/python/environments#_working-with-python-interpreters
2024-04-15 01:58:27 1
-
数据库导出表结构命令:mysqldump -d -h your_host -u your_username -p your_database your_table_name > table_structure.sql
2024-03-11 21:27:24 0
-
当我们想要传输大文件到服务器时,并且服务器不支持单个文件的大小大于某个值时,那么我们可以使用下面的命令进行大文件的拆分。
split -b 1024m inputfile
那么如何合并拆分的文件呢?可以使用下面的命令。
cat xaa xab xac > file
2023-08-27 17:40:31 3
-
ffmpeg改变音频采样率和声道命令
ffmpeg -i 1.wav -ar 8000 -ac 1 output.wav
-ar 音频采样率
-ac 音频声道 1 表示单声道2023-07-17 23:38:03 0
-
使用FFmpeg直播推流命令:ffmpeg -re -i "input.mp4" -c copy -f flv "rtmp"。
2023-05-14 12:38:50 0
-
nvidia-smi查看NVIDIA显卡信息
2023-05-14 12:12:09 0
-
conda常用的命令
创建python虚拟环境
conda create -n ChatGLM python=3.10
激活虚拟环境
conda activate ChatGLM
退出当前虚拟环境
conda deactivate
查看虚拟环境
conda env list
删除虚拟环境
conda remove -n ChatGLM --all2023-05-06 18:28:50 1
-
Linux中给用户设置简单密码会报下面的错误
The password fails the dictionary check - it is too simplistic/systematic
解决方案
vim /etc/security/pwquality.conf
把dictcheck = 0注释去掉2023-05-06 17:39:54 1