python2.7安装pandas

pip安装

pip install pandas

在这里插入图片描述
!!!无语

安装anaconda2

sh Anaconda2-5.1.0-Linux-x86_64.sh

配置vscode

vim  ./Anaconda2/pkgs/vscode_inst.py

r = requests.head(VSCODE_ENDPOINT, timeout=5) #将这里修改

r = requests.head(VSCODE_ENDPOINT, timeout=5, allow_redirects=True)#添加allow_redirects=True

在这里插入图片描述

配置conda环境

cp anaconda2/bin/conda /usr/bin/conda
export PATH="~/anaconda2/bin:$PATH"

在这里插入图片描述

准备虚拟环境

conda create -n py27 python=3.7
source activate python27

在这里插入图片描述

安装pandas

漫长的等待

conda install pandas

在这里插入图片描述

在这里插入图片描述

发布了42 篇原创文章 · 获赞 7 · 访问量 14万+

猜你喜欢

转载自blog.csdn.net/szj_jojoli/article/details/103313929
今日推荐