How to install Anaconda in linux (For Machine Learning in Python)?


In order to manipulate machine learning on your data sets, you can use Python language.
for this case, you should install the python platefrome and diffrent librairies, as biginer, I advise you to install anaconda

This tuto, gives you instructions, on how to install annaconda on Linux
folow these steps:
1. open the terminal
2. type the command: wget https://repo.continuum.io/archive/Anaconda2-5.0.0.1-Linux-x86_64.sh  this command allows you to get the last version of anaconda
you can enter to this link via your navigator, and find the last version, then change the command line .

3. the pakages will be dowloaded
4. after that , move to the folder where you have downloaded this package (by default: Downloads) use the command'cd'
6. type:  bash Anaconda2-5.0.0.1-Linux-x86_64.sh and folow the instructions
7. when finished, close and re-open the terminal so that the installation be effective
8. type this command: export PATH=~/anaconda2/bin:$PATH
9. to verify your installation, type: python --V
conda --V
if you get the results , your installation is succeded.

now you can type these command in order to update your librairies:
conda update conda
conda update anaconda
 
conda update scikit-learn

you can start working

now you can launch the jupyter notebook, by taping this command: jupyter notebook


Comments

Popular posts from this blog