Packages visible through the yolk or dropper

I need help to understand how peak and yolk work.

I started pip install pymssql, which installed the pymssql version 2.0.0b1-dev-20111019, but then decided that I want to go back to the older version.

I started yolk -V pymssqlto check which versions I have, but it only returns pymssql 1.0.2. Should the version that I installed be displayed?

A pypi search through the website shows that 1.0.2 is the only version available. Does this mean that pip uses sources other than pypi?

+3
source share
3 answers

yolk trough PyPI XMLRPC API, , pip -, "" , - http://pypi.python.org/simple/<PACKAGE_NAME>.

+3

, pip.log, , . , , pypi, pip , .

+1

I usually run pipwith -vv-flag (bilingual or very verbose) ...
in the htis case, which produces:

$ pip install -v -v -no-install pymssql

Downloading/unpacking pymssql
  Getting page http://pypi.python.org/simple/pymssql
  URLs to search for versions for pymssql:
  * http://pypi.python.org/simple/pymssql/
  Getting page http://pymssql.sourceforge.net
  Getting page http://sourceforge.net/project/showfiles.php?group_id=40059&amp;package_id=32202
  Getting page http://code.google.com/p/pymssql/
  Getting page http://code.google.com/p/pymssql/downloads/list
  Analyzing links from page http://pypi.python.org/simple/pymssql/
   [... snip ...]
  Found link http://pymssql.googlecode.com/files/pymssql-2.0.0b1-dev-20111019.tar.gz (from http://code.google.com/p/pymssql/), version: 2.0.0b1-dev-20111019
   [... snip ...]
  Using version 2.0.0b1-dev-20111019 (newest of versions: 2.0.0b1-dev-20111019, 2.0.0b1-dev-20111019, 1.0.2, 1.0.2, 1.0.1, 1.0.1, 1.0.0)
  Downloading pymssql-2.0.0b1-dev-20111019.tar.gz (5.0Mb): 
  Downloading from URL http://pymssql.googlecode.com/files/pymssql-2.0.0b1-dev-20111019.tar.gz (from http://code.google.com/p/pymssql/)
...Downloading pymssql-2.0.0b1-dev-20111019.tar.gz (5.0Mb): 5.0Mb downloaded
  Running setup.py egg_info for package pymssql
   [... snip ...]

this way you can clearly see where it is loading.

+1
source

All Articles