Skip to content

Instantly share code, notes, and snippets.

@uolot
Last active March 18, 2016 16:26
Show Gist options
  • Save uolot/319a64f9915ff773274d to your computer and use it in GitHub Desktop.
Save uolot/319a64f9915ff773274d to your computer and use it in GitHub Desktop.
Check python package dependencies
echo "Creating virtual env..."
echo
virtualenv test --no-site-packages
source test/bin/activate
echo
echo "Installing package $1..."
echo
pip install $1
echo
echo "Listing installed packages..."
echo
pip list -l | grep -v wheel | grep -v $1
echo
echo "Listing outdated packages..."
echo
pip list -l -o
echo
echo "Cleaning up..."
echo
deactivate
rm -rf test
echo
echo "Done."
echo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment