本文主要是介绍为anaconda2中的python3安装numpy,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
jupyter默认的py3是用anaconda2安装的 ,一直提示没有numpy
网上的numpy安装方式都是直接pip3 install numpy
,然而对应的并不是anaconda中的py3.
于是使用以下命令:
source activate py36 #激活py3.6,之前将其命名为py36
conda install numpy #在py3.6中安装numpy
参考:https://stackoverflow.com/questions/30492623/using-both-python-2-x-and-python-3-x-in-ipython-notebook
这篇关于为anaconda2中的python3安装numpy的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!