全市场基金统计与分析 1.环境配置 1.1.Anaconda安装与配置 1.下载地址: Windows: Linux: cd ~ wget https://repo.anaconda.com/archive/Anaconda3-2020.11-Linux-x86_64.sh bash Anaconda3-2020.11-Linux-x86_64.sh vim ~ /.bashrc export PATH= $PATH :/path/to/anaconda3/bin 2.conda常用命令: # 列出所有环境 conda env list # 创建新的环境, 并安装jupyter notebook 以及pandas包, 通过python=3.8安装3.8版本的python conda create --name new_env jupyter notebook pandas