gpt4 book ai didi

python - 在 Python 3.4.4 和 Linux 中安装 Numpy

转载 作者:行者123 更新时间:2023-12-04 18:56:11 25 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





How to install pip for python 2.6?

(4 个回答)


6年前关闭。




我刚刚安装了 Ubuntu 16.04,其中包括 Python 2.7.11 和 3.5.1。

我还成功安装了 Python 3.4.4。但是当我尝试安装 numpy和:

sudo apt-get install python-numpy 
sudo apt-get install python3-numpy

它适用于 Python 2.7.11 和 3.5.1,但我需要它用于 Python 3.4.4。我该如何安装它?

最佳答案

来自 python docs : 当使用并行安装的多个 Python 版本时,可以使用以下命令和 pip为特定版本的 Python 安装 Python 包:

python2   -m pip install SomePackage  # default Python 2
python2.7 -m pip install SomePackage # specifically Python 2.7
python3 -m pip install SomePackage # default Python 3
python3.4 -m pip install SomePackage # specifically Python 3.4
python3.5 -m pip install SomePackage # specifically Python 3.5

因此,要安装 numpy Python3.4的包,你可以使用这个命令:
~/$ python3.4 -m pip install numpy

关于python - 在 Python 3.4.4 和 Linux 中安装 Numpy,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37933978/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com