mirror of
https://github.com/webgefrickel/dotfiles
synced 2024-11-19 03:25:33 +00:00
24 lines
453 B
Bash
Executable File
24 lines
453 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
|
|
# ruby
|
|
brew install rbenv # restart terminal, then:
|
|
rbenv install 3.2.1
|
|
rbenv global 3.2.1
|
|
|
|
# node
|
|
curl -L https://git.io/n-install | bash
|
|
n v8
|
|
n v14
|
|
n v16
|
|
n lts
|
|
npm install -g npm@latest
|
|
npm update -g
|
|
|
|
# python
|
|
# first: find out the current python3 version in homebrew
|
|
# then install this version with pyenv and link it
|
|
brew install pyenv # restart terminal, then:
|
|
pyenv install 3.11.2
|
|
pyenv global 3.11.2
|
|
pip install --upgrade pip
|