主页

Kaldi 语音识别实战 1 基本概念

在MacOS 下跑 kaldi brew install automake llvm cmake sox libtool subversion 基本安装 Common build problems · pyenv/pyenv Wiki; brew install pyenv pyenv install -v 2.7.18 # Set the python version. pyenv global 2.7.18 # Export PATH if necessary. export PATH="$(pyenv root)/shims:${PATH}" Add if necessary.: echo 'PATH=$(pyenv root)/shims:$PATH'...

阅读更多

Shell 字符串相关操作

写在前面 字符串创建 # 等号两边不能加空格! s1="abc" s2=abc s3='abc' # 作为判断的话 = 两边必须加空格 [[ $s1 = $s2 && $s2 = $s3 ]] && echo yes 单引号不会解释变量, 双引号会 例如 $ t2="$s1=abc"; echo $t2 abc=abc $ t1='$s1=abc'; echo $t1 $s1=abc 子字符串 #!/bin/bash name="helloworld" [[ ${name} = "helloworld" ]] && echo yes || echo no [[ ${#name} =...

阅读更多

Macos 配置 golang 开发

写在前面 brew install go 最近新安装的 go 突然不能用了, 很奇怪, 后来发现需要设置一下 # vi ~/.zshrc # Set the GOPROXY environment variable export GOPROXY=https://goproxy.io,direct export GOROOT=/opt/homebrew/Cellar/go/1.21.4/libexec/ export GOPATH=$HOME/go/ export PATH=$PATH:$GOROOT/bin:$GOPATH/bin 坑点就在 libexec, 之前好像是不需要的, 不加的话就会找不到 go 的执行文件, 报错: package fmt is ...

阅读更多

Conda pip提效

安装 # macos brew install miniforge # linux wget https://521github.com/extdomains/github.com/conda-forge/miniforge/releases/download/23.11.0-0/Miniforge3-Linux-aarch64.sh sh Miniforge3-Linux-aarch64.sh conda常用命令 下面给出一些conda管理的常用命令: 刷新镜像缓存conda clean -i; (i表示索引) 更新conda: conda update -n base -c defaults conda; 或者更新全部: co...

阅读更多

Qemu 参数设置

提高磁盘大小 qemu-img resize vmdisk.qcow2 +10G # check qemu-img info vmdisk.qcow2 image: archlinux-x86_64-cc.qcow2 file format: qcow2 virtual size: 50 GiB (53687091200 bytes) disk size: 12.6 GiB cluster_size: 65536 Format specific information: compat: 1.1 compression type: zlib lazy refcounts: false refcount bits: 16 corrupt: f...

阅读更多

Qemu 共享文件夹

-virtfs local,path=path,mount_tag=mount_tag ,security_model=security_model[,writeout=writeout][,readonly=on] [,fmode=fmode][,dmode=dmode][,multidevs=multidevs] -virtfs proxy,socket=socket,mount_tag=mount_tag [,writeout=writeout][,readonly=on] -virtfs proxy,sock_fd=sock_fd,mount_tag=mount_tag [,writeout=writeout][,readonly=on] ...

阅读更多

Macos安装metal 加速版 pytorch

写在前面 试试 m3 的 metal 加速效果如何 Mac computers with Apple silicon or AMD GPUs macOS 12.3 or later Python 3.7 or later Xcode command-line tools: xcode-select --install 安装 Python: conda-forge brew install miniforge 镜像 channels: - defaults show_channel_urls: true auto_activate_base: false ssl-verify: false default_channels...

阅读更多

Wireshark On Mac Intro

写在前面 为了学网络编程, 数据报的各种走向和信息的传递, 需要研究一下抓包工具, 也算是对理论知识的一个巩固吧 一些学习资料 Wireshark Masterclass - YouTube; Wireshark 数据分析-第三版 wireshark 网络分析从入门到实践 基本认识-安装和配置 安装(MacOS-brew) brew install --cask wireshark # 一定要用 cask 选项, 否则先安装命令行之后命令行版本会跟 gui 界面的 wireshark冲突 brew list wireshark ==> App /Applications/Wireshark.app (680 files, 21...

阅读更多

Total views.
您是Zorch的第 个小伙伴
Hits