Skip to content

Instantly share code, notes, and snippets.

@JoseAVallejo12
JoseAVallejo12 / bash | zsh
Created September 6, 2020 14:07
How install pyenv in WSL2 with ubuntu 18.04 (auto config for bash o zsh
#!/usr/bin/env bash
# pyenv lets you easily switch between multiple versions of Python
# Tested in ubuntu 18.04 run in WSL2
sudo apt-get update
sudo apt install -y curl git
wait
# *******Install dependencias tested in ubuntu 18.04******
git clone https://github.com/pyenv/pyenv.git ~/.pyenv
wait