PyCharm如何使用numpy

以下介绍摘自 https://zh.wikipedia.org/wiki/NumPy

NumPy是Python语言的一个扩充程式库。支援高阶大量的维度阵列与矩阵运算,此外也针对阵列运算提供大量的数学函数函式库。NumPy的前身Numeric最早是由Jim Hugunin与其它协作者共同开发,2005年,Travis Oliphant在Numeric中结合了另一个同性质的程式库Numarray的特色,并加入了其它扩充功能而开发了NumPy。NumPy为开放原始码并且由许多协作者共同维护开发。

以下介绍摘自 http://www.numpy.org/

NumPy is the fundamental package for scientific computing with Python. It contains among other things:

a powerful N-dimensional array object

sophisticated (broadcasting) functions

tools for integrating C/C++ and Fortran code

useful linear algebra, Fourier transform, and random number capabilities

Besides its obvious scientific uses, NumPy can also be used as an efficient multi-dimensional container of generic data. Arbitrary data-types can be defined. This allows NumPy to seamlessly and speedily integrate with a wide variety of databases.

问题描述

在PyCharm中导入numpy,报错 ModuleNotFoundError: No module named 'numpy'

出错啦

解决方案

缺啥补啥

Setting的正确打开方式
Settings设置

添加

Interpreter
导包的正确入口
搜索numpy
numpy安装完成
结果展示

不报错了~:) 

开心,晚餐给自己加个鸡腿吧

你可能感兴趣的:(PyCharm如何使用numpy)