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
基础教程推荐
- 在Python中从Azure BLOB存储中读取文件 2022-01-01
- 修改列表中的数据帧不起作用 2022-01-01
- 包装空间模型 2022-01-01
- 求两个直方图的卷积 2022-01-01
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01
