Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
technical:python [2020/07/03 04:17] – created chunchungtechnical:python [2021/03/27 07:27] (current) chunchung
Line 6: Line 6:
 conda install -c conda-forge jupyter_contrib_nbextensions jupyter_nbextensions_configurator conda install -c conda-forge jupyter_contrib_nbextensions jupyter_nbextensions_configurator
 </code> </code>
- +====Useful extensions==== 
-=====Python 3.8=====+  * Table of Contents (2) 
 +  * Freeze 
 +  * Hide input 
 +=====Create environment for different python version===== 
 +* This uses version 3.8 as example. However, python 3.8 is now available from Anaconda
 <code bash> <code bash>
 conda update -n base -c defaults conda conda update -n base -c defaults conda
 conda create -n python38 python=3.8 conda create -n python38 python=3.8
 conda activate python38 conda activate python38
 +</code>
 +=====HDF5 and c++=====
 +<code bash>
 +conda install hdf5
 +conda install gxx_linux-64
 </code> </code>