Skip to content

Latest commit

 

History

History
52 lines (32 loc) · 1.15 KB

system.org

File metadata and controls

52 lines (32 loc) · 1.15 KB

System settings

Introduction

Disable core dumps

echo "ulimit -c 0 > /dev/null 2>&1" > /etc/profile.d/disable-coredumps.sh

Disable searching repos on mistype …

sudo dnf remove PackageKit-command-not-found

Install miniconda

wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh

This will add an entry into .bashrc to add miniconda/bin/ to my $PATH. However since I’m using zsh I added this to my .profile read by .zshrc as part of my config (Link to entry in .profile).

Install DataLad

conda install -c conda-forge datalad

Not being familiar with python, I figured out that I need to update on several of my machines:

conda update -c conda-forge  datalad