当前位置: 代码迷 >> 综合 >> python2.7安装pandas
  详细解决方案

python2.7安装pandas

热度:101   发布时间:2023-09-05 19:31:54.0

python2.7安装pandas

    • pip安装
    • 安装anaconda2
    • 配置vscode
    • 配置conda环境
    • 准备虚拟环境
    • 安装pandas

pip安装

pip install pandas

python2.7安装pandas
!!!无语

安装anaconda2

sh Anaconda2-5.1.0-Linux-x86_64.sh

配置vscode

vim  ./Anaconda2/pkgs/vscode_inst.pyr = requests.head(VSCODE_ENDPOINT, timeout=5) #将这里修改r = requests.head(VSCODE_ENDPOINT, timeout=5, allow_redirects=True)#添加allow_redirects=True

python2.7安装pandas

配置conda环境

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

python2.7安装pandas

准备虚拟环境

conda create -n py27 python=3.7
source activate python27

python2.7安装pandas

安装pandas

漫长的等待

conda install pandas

python2.7安装pandas

python2.7安装pandas

  相关解决方案