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
基础教程推荐
- 对多索引数据帧的列进行排序 2022-01-01
- Python,确定字符串是否应转换为 Int 或 Float 2022-01-01
- Python 中是否有任何支持将长字符串转储为块文字或折叠块的 yaml 库? 2022-01-01
- 在 Python 中将货币解析为数字 2022-01-01
- 究竟什么是“容器"?在蟒蛇?(以及所有的 python 容器类型是什么?) 2022-01-01
- Kivy 使用 opencv.调整图像大小 2022-01-01
- matplotlib 设置 yaxis 标签大小 2022-01-01
- 比较两个文本文件以找出差异并将它们输出到新的文本文件 2022-01-01
- 在 Django Admin 中使用内联 OneToOneField 2022-01-01
- kivy 应用程序中的一个简单网页作为小部件 2022-01-01
