Bash and Installation Checks
Checking Bash Installation
pwd
## chose directory to work in
cd vscode
## list contents of directory
ls -al
## show contents of file
cat README.md
python --version
python2 --version
test=$(conda list | grep -c "jupyter")
if [ $test -gt 0 ]; then
echo "conda and jupyter installed correctly"
else
echo "conda and jupyter not installed correctly"
fi
jupyter --version
jupyter kernelspec list
java --version
javac --version
npm -version