本文主要是介绍解决方案:在jupyter notebook环境下安装不了numpy,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
文章目录
- 一、现象
- 二、解决方案
一、现象
平台:autodl
镜像:PyTorch 2.0.0 Python 3.8(ubuntu20.04) Cuda 11.8
GPU:RTX 4090(24GB) * 1
CPU:12 vCPU Intel® Xeon® Platinum 8352V CPU @ 2.10GHz
内存:90GB
安装numpy环境,发现执行下面的命令行都不行
# pip install numpy==1.9.0 -i https://pypi.tuna.tsinghua.edu.cn/simple/
# ! pip install numpy==1.9.0 -i http://pypi.douban.com/simple/
! pip install numpy==1.9.0 -i http://mirrors.aliyun.com/pypi/simple/
二、解决方案
得执行以下这行命令才可以
conda install numpy
这篇关于解决方案:在jupyter notebook环境下安装不了numpy的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!