• Home
  • About
    • Seokmin.Lee photo

      Seokmin.Lee

      Hello, I am a master's student in the Department of Convergence Security (Samsung Advanced Security) at Korea University.After graduation, I am expected as a security developer or researcher member of Samsung SDS.

    • Learn More
    • LinkedIn
    • Github
  • Posts
    • All Tags

[mac]install brew, pyenv and jupyter

08 Aug 2021

brew

/bin/bash -c “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)”

echo ‘export PATH=/opt/homebrew/bin:$PATH’ » ~/.zshrc

source .zshrc

pyenv

brew install pyenv

pyenv install 3.8.0

echo -e ‘if command -v pyenv 1>/dev/null 2>&1; then\n eval “$(pyenv init -)”\nfi’ » ~/.zshrc

jupyter notebook

pip3 install –upgrade pip3

pip3 install jupyter

jupyter notebook



macpyenvbrew Share Tweet +1