conda创建数据科学环境最新版

  1. Install anaconda

  2. 创建env
    conda create --name data_science python=3.8.5
  3. 安装R 4.1.0   和  jupyter
    conda install -c conda-forge r-base=4.1.0
    conda install -c conda-forge r-essentials=4.1.0
    conda install numpy
    conda install pandas
    conda install matplotlib
    conda install scikit-learn
     
  4. 启动jupyter notebook
    jupyter notebook
     

 

你可能感兴趣的:(Ubuntu)