Last active
May 10, 2022 19:45
-
-
Save ctrombley/5f1563c4496f49960f02e53f59a3984e to your computer and use it in GitHub Desktop.
Revisions
-
ctrombley revised this gist
May 10, 2022 . 1 changed file with 15 additions and 15 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -5,19 +5,19 @@ echo "XCode Command Line Tools Version: $(pkgutil --pkg-info=com.apple.pkg.CLToo echo "Homebrew Version:" echo "$(brew --version | sed 's/^/ /')" echo "\n======\nPYTHON\n======\n" echo "pyenv version: $(pyenv --version)" echo "pyenv location: $(pyenv --version)" echo "Current VIRTUAL_ENV value: $VIRTUAL_ENV" echo "python version: $(python --version)" echo "python location: $(which python)" echo "pip version: $(pip --version)" echo "pip location: $(which pip)" echo "poetry version: $(poetry --version)" echo "poetry location: $(which poetry)" echo "\n======\nNODE\n======\n" echo "nvm version: $(nvm --version)" echo "Current NVM_DIR value: $NVM_DIR" echo "node version: $(node --version)" echo "node location: $(which node)" echo "yarn version: $(yarn --version)" echo "yarn location: $(which yarn)" -
ctrombley revised this gist
May 10, 2022 . 1 changed file with 16 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,11 +1,23 @@ echo "\n======\nOS\n======\n" echo "MacOS Version:" echo "$(sw_vers | sed 's/^/ /')" echo "XCode Command Line Tools Version: $(pkgutil --pkg-info=com.apple.pkg.CLTools_Executables | grep version)" echo "Homebrew Version:" echo "$(brew --version | sed 's/^/ /')" echo "\n======\nPYTHON\n======\n" echo "pyenv Version: $(pyenv --version)" echo "pyenv Location: $(pyenv --version)" echo "Current VIRTUAL_ENV Value: $VIRTUAL_ENV" echo "python Version: $(python --version)" echo "python Location: $(which python)" echo "pip Version: $(pip --version)" echo "pip Location: $(which pip)" echo "poetry Version: $(poetry --version)" echo "poetry Version: $(which poetry)" echo "\n======\nNODE\n======\n" echo "nvm Version: $(nvm --version)" #echo "nvm Location: $(which nvm)" echo "node Version: $(node --version)" echo "node Location: $(which node)" echo "yarn Version: $(yarn --version)" echo "yarn Location: $(which yarn)" -
ctrombley created this gist
May 10, 2022 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ echo "MacOS Version:" echo "$(sw_vers | sed 's/^/ /')" echo "Homebrew Version:" echo "$(brew --version | sed 's/^/ /')" echo "pyenv Version: $(pyenv --version)" echo "VIRTUAL_ENV Value: $VIRTUAL_ENV" echo "python Location: $(which python)" echo "pip Location: $(which pip)" echo "python Version: $(python --version)" echo "pip Version: $(pip --version)" echo "XCode Command Line Tools Version: $(pkgutil --pkg-info=com.apple.pkg.CLTools_Executables | grep version)"