pycharm installation and numpy import

Copyright statement: This article is an original article by the blogger and may not be reproduced without the blogger's permission. https://blog.csdn.net/Mays_day/article/details/79140096

Import of numpy after pycharm is installed

pip install numpy

Using the pip command in the dos environment,
这里写图片描述
the platform is not supported, the python version is too high, and the numpy does not match. I just downloaded the latest version of 3.7, re-downloaded the 3.6 version, and the installation was successful.

When installing python, choose the path by yourself, check the automatic configuration of environment variables, the default installation path is in a hidden folder temp, and the temporary files are easy to be cleared by the system.
pycharm中导入python文件
Configure the project interpreter and add the python installation
这里写图片描述
path . Import matplotlib under the cmd command line. After the import is successful, look at pycharm. The matplotlib package is automatically added to the interpreter configuration.
这里写图片描述
Project view is closed, alt+1 to reopen

Related Posts