Am 24.03.2011 04:19, schrieb Miki Tebeka:
> Greetings,
> 
> My company want to distribute Python packages internally. We would like 
> something like an internal PyPi where people can upload and easy_install from 
> packages.
> 
> Is there such a ready made solution?
> I'd like something as simple as possible, without my install headache.

Plain simple solution:

 * configure a host in your apache config and point it to a directory on
the file system
 * create directory simple  and turn directory index on for it and all
its descendants
 * create a directory for every package and download the files into
these directories

The download link for e.g. lxml 2.3 should look like
http://your.pipy.com/simple/lxml/lxml-2.3.tar.gz. Now point run
"easy_install --index-url http://your.pipy.com/simple lxml==2.3"

Christian

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to