Skip to content

Instantly share code, notes, and snippets.

@jbbarth
Last active September 11, 2015 09:47
Show Gist options
  • Save jbbarth/0f31e969e272ff396487 to your computer and use it in GitHub Desktop.
Save jbbarth/0f31e969e272ff396487 to your computer and use it in GitHub Desktop.
Seriously, pip?
% pip freeze|grep ^cffi
cffi==1.0.0
% echo "import cffi; print cffi.__version__"|python
1.0.0
% pip install cffi==1.2.1
Collecting cffi==1.2.1
/usr/local/lib/python2.7/dist-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
InsecurePlatformWarning
Downloading cffi-1.2.1.tar.gz (335kB)
100% |################################| 335kB 717kB/s
Collecting pycparser (from cffi==1.2.1)
Building wheels for collected packages: cffi
Running setup.py bdist_wheel for cffi
Stored in directory: /root/.cache/pip/wheels/fa/ad/ab/28df6da3b6cf3c510c6dc64f336ef17ef37cd1b0d4d5eff3bc
Successfully built cffi
Installing collected packages: pycparser, cffi
Successfully installed cffi-1.0.0 pycparser-2.14
% pip freeze|grep ^cffi
cffi==1.0.0
% echo "import cffi; print cffi.__version__"|python
1.2.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment