我正在尝试将numpy导入正在执行的项目中,但出现错误代码:
ModuleNotFoundError: No module named 'numpy'
当我尝试进入Python终端并键入
"pip install numpy"
我收到以下错误代码
SyntaxError: invalid syntax
要执行此操作,我需要做什么?
答案 0 :(得分:1)
您不能只在python终端中使用pip。使用操作系统中的bash或cmd或任何其他版本。然后,您可以(重击):
pip3 install numpy
或Powershell:
pip install numpy
答案 1 :(得分:0)
您可以使用上述命令来安装numpy
sudo apt-get install python-pip
sudo pip install numpy
答案 2 :(得分:0)
首先TestOptional constructor called.. test.TestTest$TestOptional@28f67ac7
TestOptional#getDocIds called.. test.TestTest$TestOptional@28f67ac7
TestOptional constructor called.. test.TestTest$TestOptional@1a407d53
TestOptional#getEmptyDocIds called.. test.TestTest$TestOptional@1a407d53
One: true
###
TestOptional#getDocIds called.. test.TestTest$TestOptional@28f67ac7
Two: true
###
TestOptional constructor called.. test.TestTest$TestOptional@3cda1055
TestOptional#getEmptyDocIds called.. test.TestTest$TestOptional@3cda1055
Three: false
###
TestOptional constructor called.. test.TestTest$TestOptional@79b4d0f
TestOptional#getEmptyDocIds called.. test.TestTest$TestOptional@79b4d0f
Four: false
,您看到点子的版本了吗?如果你有点子
您尝试过这个吗?
def sReg = "https://test-registry.home.imagehub.com/engineering/images/rhel:latest"
def registry = sReg =~ /\w+:\/\/(.*)\.[^\/]+/(.*)/(\w+):(.*)/
println registry[0] //For all groups
println registry[0][1] //For group 1
或
pip --versiyon
或
pip3 install numpy
答案 3 :(得分:0)
在命令行中使用它。不要在python中使用。
python -m pip install numpy
OR
python3 -m pip install numpy