-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
Here's a crash-course in making your own python toolkit via miniconda: | ||
|
||
Although it is recommended to install the full anaconda system via | ||
|
||
this is an alternative if you want to cherry pick your modules and | ||
start with a very small python system. | ||
|
||
|
||
|
||
|
||
Head over to | ||
http://conda.pydata.org/miniconda.html | ||
and grab the latest installer and follow instructions | ||
|
||
Here is an example for linux 64 bit: | ||
|
||
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh | ||
bash Miniconda3-latest-Linux-x86_64.sh | ||
... | ||
I installed it in: /data2/teuben/python/miniconda3 | ||
This modified my PATH as follows in the .bashrc file: | ||
|
||
export PATH="/data2/teuben/python/miniconda3/bin:$PATH" | ||
|
||
python --version (3.5.2) | ||
conda install ipython | ||
ipython --version (4.2.0) | ||
conda install numpy scipy matplotlib | ||
conda install yt | ||
conda install jupyter | ||
|
||
Now you can issue the command (an alias "jn" or just 'j" would seem to make a lot of sense here) | ||
|
||
jupyter notebook | ||
|
||
and in your browser you will now see python notebooks (ipynb files) if you are in the right | ||
directory. |