Last active
January 20, 2024 01:59
-
-
Save ianjennings/0a28943527fb7fc1a42f7d76b2b3c474 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export PYENV_ROOT="$HOME/.pyenv" | |
export PATH="$PYENV_ROOT/bin:$PATH" | |
eval "$(pyenv init --path)" | |
eval "$(pyenv init -)" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew install pyenv | |
pyenv install 3.11 | |
pyenv default 3.11 | |
pip install open-interpreter | |
vim ~/.zshrc # add to path |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interpreter --os | |
# this will install opencv | |
# it uses pip, so if pip is not path to python 3.11 will have problems |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment