mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 12:15:29 +00:00
11 lines
271 B
Bash
Executable File
11 lines
271 B
Bash
Executable File
#!/bin/sh
|
|
|
|
asdf plugin add python
|
|
asdf install python latest
|
|
asdf global python latest
|
|
|
|
pip install -r ~/.dotfiles/python/pip-requirements.txt
|
|
|
|
conda install -n base ipykernel --update-deps --force-reinstall
|
|
conda install --file ~/.dotfiles/python/conda-requirements.txt
|