Skip to content

Instantly share code, notes, and snippets.

@aadm
Last active March 27, 2019 14:15
Show Gist options
  • Save aadm/f5d44934a8742e9b9bf90e0ed94a249c to your computer and use it in GitHub Desktop.
Save aadm/f5d44934a8742e9b9bf90e0ed94a249c to your computer and use it in GitHub Desktop.
Python via miniconda and squit installation

How to install Python via Miniconda and squit for dummies.

Install miniconda: https://docs.conda.io/en/latest/miniconda.html

Start menu/anaconda (if on Windows), launch anaconda prompt.

Execute following commands to install all required libraries and extras:

conda install numpy scipy pandas matplotlib jupyter scikit-learn
pip install bruges lasio segyio

[optional] Install jupyter-lab:

conda install -c conda-forge jupyterlab

[optional, alternative to previous step] Install jupyter-lab with ipywidgets for interactivity:

conda install -c conda-forge nodejs jupyterlab ipywidgets
jupyter labextension install @jupyter-widgets/jupyterlab-manager

Download latest squit archive and install it:

pip install squit-0.x.tar.gz

Launch Jupyter console:

jupyter-qtconsole

Notes

Recommended (and open source) text editors: Visual Studio Code or Atom. Lightweight (Windows-only) alternative: notepad++.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment