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
# remove previous conda environment (optional) | |
conda deactivate | |
conda remove --name cellpose --all | |
# create your `cellpose` environment | |
conda create --name cellpose | |
# install dependencies and `cellpose[gui]` package from `conda-forge` | |
conda activate cellpose | |
conda install -c conda-forge pyqt pyqtgraph 'cellpose[gui]' |
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
@ECHO OFF | |
TITLE Restic backup | |
:: mount network drive for Administrator command prompt | |
NET USE Z: \\data.server.pvt\your\data | |
:: manually create remote restic repository with (optional) compression | |
:: restic.exe init --repo "Z:\repo" --repository-version latest | |
:: set RESTIC_PASSWORD system variable before accessing repository |
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
## R expects this file to be in its hidden config folder | |
# mkdir ~/.R | |
# touch ~/.R/Makevars | |
## Install 'OpenMP' using Homebrew in Terminal | |
# brew update && brew install libomp | |
## Include 'OpenMP' library with clang | |
HOMEBREW_PATH=/opt/homebrew | |
# 'openmp' was symlinked (package) |
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
autocmd BufNewFile,BufRead *.ijm set syntax=C |