Skip to content

Commit

Permalink
Create brew.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
LoBrol committed Jul 28, 2023
1 parent 9eaab19 commit a12e09d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions brew.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/bin/sh



sudo apt update
sudo apt install -y build-essential
sudo apt install -y git

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
(echo; echo 'eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"') >> /home/$USER/.bashrc
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"

brew install pyenv
pyenv install 2.7.18
pyenv global 2.7.18
PATH=$(pyenv root)/shims:$PATH

0 comments on commit a12e09d

Please sign in to comment.