Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我到处搜索,但找不到合适的答案。我不知道如何安装 numpy,所以我可以在 Geany 和 python 3.1.2 中使用它。它仅适用于 python 2.6.5。我是 ubuntu 的新手。
编辑:我得到 ImportError: No module named numpy
如果python 3.1.2是通过python3软件包安装的,那么您可以尝试:
python 3.1.2
python3
$ sudo apt-get install python3-numpy
尝试了上面的 apt-get 安装解决方案,但是没有用,但是pip 确实有效:
$ sudo pip3 install numpy
此外,如果需要,这里是 pip 的安装说明。