anaconda安装TensorFlow 库和依赖库NumPy
时间: 2023-11-19 09:45:46 浏览: 86
windows环境下tensorflow安装过程详解.pdf
5星 · 资源好评率100%
,是否需要使用代理?请给出具体步骤。
答:不需要使用代理安装。安装Anaconda后,可以在Anaconda Navigator中打开Anaconda Prompt,然后输入以下命令安装TensorFlow和NumPy:
conda install tensorflow numpy
如果需要指定版本,可以使用以下格式:
conda install tensorflow=版本号 numpy=版本号
这样就可以安装指定版本的TensorFlow和NumPy库了。如果因为网络原因无法安装,可以尝试使用清华镜像源加速下载,具体步骤可以在Anaconda Prompt中输入以下命令:
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes
然后再使用上面的命令安装库即可。
阅读全文