美文网首页
Python- pandas 和 numpy 的下载与安装

Python- pandas 和 numpy 的下载与安装

作者: Htt_1996 | 来源:发表于2020-06-01 12:37 被阅读0次

一、numpy的下载安装

1. 下载地址:https://pypi.org/project/numpy/

2. 下载版本:

  • cp38表示:下载对应python版本的-我的python为3.8版本故下载
  • 下载 win32 版本
    image.png

3. 安装

  • 打开cmd(cmd.exe是微软Windows系统基于WINDOWS上的命令解释程序,类似于微软的DOS操作系统。cmd.exe是一个32位的命令行程序),进入下载numpy所在目录。

    image.png
  • pip 安装:pip install numpy-1.18.4-cp38-cp38-win32.whl

    image.png
  • 检测是否安装成功
    python
    from numpy inport *
    random.rand(3,3)

    image.png
  • exit() cmd退出python

二、pandas的下载与安装

  1. 安装pandas需要先安装好pip、numpy,有时候网速也会限制下载。
    pip3 install pandas
    image.png

三、PyCharm无法使用已经安装好的第三方库

1. 首先在cmd查找本地库解释器的存放地址

image.png

2. pycharm设置项目使用的解释器

  • File—Settings
  • image.png
  • 选择cmd查到的解释器位置


    image.png
  • 一定要点Apply


    image.png
  • 重启pycharm

参考:

相关文章

  • Python- pandas 和 numpy 的下载与安装

    一、numpy的下载安装 1. 下载地址:https://pypi.org/project/numpy/ 2. 下...

  • Python实现数据分析1

    Python-数据分析常用库 1)Numpy 2) Pandas 3) Matplotlib Numpy 基于数组...

  • Pandas

    Panda 安装 MacOS: Ubuntu: Pandas的基本介绍 Pandas与Numpy的不同与联系 如果...

  • python入门 -安装python与环境配置

    安装Python与环境配置 Anaconda安装和使用 常用数据分析库Numpy、Scipy、Pandas和 ma...

  • Pandas介绍

    1. 安装 首先,需要先安装numpy和pandas环境,参考:https://pandas.pydata.org...

  • termux + python + scikit-learn

    问题:按照 官方安装文档 文档安装完 numpy 和 scipy, pip 安装 pandas, scikit-l...

  • pandas基本介绍

    pandas与numpy的不同是,pandas使用的是字典结构,而numpy使用的是列表结构,但pandas是建立...

  • Numpy与Panda简介

    numpy与pandas较python运行速度较快,pandas是基于numpy,是numpy的升级版本其消耗资源...

  • python环境安装

    环境安装 mac中安装python的库numpy,scipy,pandas,matplotlib,sklearn都...

  • Python Pandas使用

    用于数据探索和分析,基于numpy模块 安装 pip install pandas 常用操作 Series 序列(...

网友评论

      本文标题:Python- pandas 和 numpy 的下载与安装

      本文链接:https://www.haomeiwen.com/subject/kgvjzhtx.html