How to install pandas in pycharm(如何在pycharm中安装 pandas )
问题描述
我正在尝试在 pycharm 中安装 pandas
包.我收到以下错误:unable to find vcvarsall.bat
(我尝试通过 cmd
安装,但也通过 project interpreter
安装).我尝试根据 安装 WSDK 这里但它不起作用.我还尝试了视频中的说明.最后我尝试了 下载 gcc 二进制文件.
I am trying to install the pandas
package in pycharm. I get the following error: unable to find vcvarsall.bat
(i tried to install via the cmd
but also via the project interpreter
). I tried to install WSDK according to here but it did not work. I also tried the instructions in the video. Lastly i tried downloading the gcc binary according.
这些都不起作用.有任何想法吗 ?我使用的是 Windows 10,我的 python 版本是 3.4.1,pip 版本是 1.5.6(适用于 64 位)
None of these worked. Any ideas ? I am using Windows 10, my python version is 3.4.1 and the pip version is 1.5.6 (for 64-bit)
推荐答案
尝试 python -m pip install --upgrade pip
后跟 pip install pandas
或 python -m pip install pandas
.
Try python -m pip install --upgrade pip
followed by pip install pandas
, or python -m pip install pandas
.
这篇关于如何在pycharm中安装 pandas 的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在pycharm中安装 pandas


基础教程推荐
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 筛选NumPy数组 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01