• lukeewin

    解决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 main

    2024-12-02 15:20:36

  • lukeewin

    昨天在淘宝中开了自己的一个网店。https://lukeewin.taobao.com

    2024-11-16 17:15:22

  • lukeewin

    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

  • lukeewin

    数据库导出表结构命令:mysqldump -d -h your_host -u your_username -p your_database your_table_name > table_structure.sql

    2024-03-11 21:27:24

  • lukeewin

    当我们想要传输大文件到服务器时,并且服务器不支持单个文件的大小大于某个值时,那么我们可以使用下面的命令进行大文件的拆分。

    split -b 1024m inputfile
    

    那么如何合并拆分的文件呢?可以使用下面的命令。

    cat xaa xab xac > file
    

    2023-08-27 17:40:31

  • lukeewin

    ffmpeg改变音频采样率和声道命令
    ffmpeg -i 1.wav -ar 8000 -ac 1 output.wav
    -ar 音频采样率
    -ac 音频声道 1 表示单声道

    2023-07-17 23:38:03

  • lukeewin

    使用FFmpeg直播推流命令:ffmpeg -re -i "input.mp4" -c copy -f flv "rtmp"。

    2023-05-14 12:38:50

  • lukeewin

    nvidia-smi查看NVIDIA显卡信息

    2023-05-14 12:12:09

  • lukeewin

    conda常用的命令
    创建python虚拟环境
    conda create -n ChatGLM python=3.10
    激活虚拟环境
    conda activate ChatGLM
    退出当前虚拟环境
    conda deactivate
    查看虚拟环境
    conda env list
    删除虚拟环境
    conda remove -n ChatGLM --all

    2023-05-06 18:28:50

  • lukeewin

    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