Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python PIP not showing pypi package

Tags:

python

pip

pypi

Short Question

Is there a delay between when a package is added to PyPi and its availability via pip?

Background

I have recently pushed a package up to PyPi. From what I tell there were no errors with this step (it registered OK), but I cannot use pip to install the package.

like image 482
Adam Lewis Avatar asked Apr 12 '13 06:04

Adam Lewis


1 Answers

This blog post describes the possible problem you are facing. You probably have the same problem and forgot to upload your package, but only registered it, because the package you linked has no files to download.

The solution (taken from the above linked blog post) is to use the command

python setup.py sdist upload
like image 91
halex Avatar answered Sep 21 '22 16:09

halex