This tutorial is made for scientists who want to learn Python and eventually step from Matlab.
Python is a general programming language with many scientific libraries. It is optimized to be easy to develop in. The same is not true for Matlab which is a domain-specific language.
-
Install Miniforge
-
Download this repository:
git clone https://github.com/pnavaro/python-notebooks.git
or download as a zip file.
- Create a new conda environment:
conda env create -f environment.yml -n python-navaro
source activate python-navaro # Linux OS/X
activate python-navaro # Windows
- If you have an existing installation of Jupyter install the new kernel with:
conda run -n python-navaro python -m ipykernel install --user --name python-navaro
- Open notebooks with:
cd python-notebooks
jupyter notebook
Pierre