Skip to content

Instantly share code, notes, and snippets.

@wut0n9
Last active June 19, 2019 07:46
Show Gist options
  • Save wut0n9/9c1fa5caa6d3228e3f74f734fbf2b37e to your computer and use it in GitHub Desktop.
Save wut0n9/9c1fa5caa6d3228e3f74f734fbf2b37e to your computer and use it in GitHub Desktop.
conda安装指定版本的cpu版tensorflow
解决zsh终端无匹配错误
# .zshrc
添加
setopt no_nomatch
source .zshrc
# 查找版本号、channel
conda search tensorflow
# 指定Channel、版本号、build
# 指定了build是mkl,版本号是1.12.0,channel是pkgs/main
conda install -c pkgs/main tensorflow[build=mkl*]==1.12.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment