Difference between revisions of "Anaconda"

From MEG Wiki
Jump to navigation Jump to search
(Created page with " ==Install anaconda== https://docs.continuum.io/anaconda/install Open your .cshrc file and add the following lines depending on the version you downloaded set path = (/ho...")
 
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
 
 
==Install anaconda==
 
==Install anaconda==
  
Line 12: Line 10:
 
   
 
   
 
  conda create -n py27 python=2.7 anaconda
 
  conda create -n py27 python=2.7 anaconda
 
  
 
Useful Webpages:  
 
Useful Webpages:  

Latest revision as of 14:16, 2 December 2019

Install anaconda

https://docs.continuum.io/anaconda/install

Open your .cshrc file and add the following lines depending on the version you downloaded

set path = (/home/custine/anaconda2/bin $path)

To use a specific version of python say for example Python version 2.7: (In Linux)

conda create -n py27 python=2.7 anaconda

Useful Webpages:

Installing MNE python dependencies

conda install scipy matplotlib scikit-learn mayavi ipython-notebook