Last active
January 12, 2019 19:24
-
-
Save BrunoGomesCoelho/9ec2cf4980b7de983b530198e736ab9f to your computer and use it in GitHub Desktop.
Quickly get a simple data science environement running with conda
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget https://repo.anaconda.com/archive/Anaconda3-5.2.0-Linux-x86_64. | |
sh Anaconda3-5.2.0-Linux-x86_64.sh | |
conda update -n base conda | |
# Activate a environment then inside it run: | |
conda install pandas matplotlib jupyter notebook scipy scikit-learn nb_conda seaborn | |
# Add some extra things... | |
# jupyter extensions | |
conda install -c conda-forge jupyter_contrib_nbextensions | |
# xgboost | |
pip3 install xgboost | |
# Random edit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment