Re: Python packages listed in PyPI

2016-07-21 Thread Pete Forman
On 21 July 2016 at 07:28, Rayne wrote: > Thanks! One more question: Does "pip install" require Internet to work? Or > are all implementations already contained in the packages and so do not > require additional downloads? > pip install is downloading from https://pypi.python.org so yes you do ne

Re: Python packages listed in PyPI

2016-07-21 Thread Rayne via Python-list
"I don't understand what difference you intend between “implementations” and “packages”." I meant whether the package is self-contained, that is, all the different implementations for different OS and versions of Python are already contained in the package itself. But you've already answered m

Re: Python packages listed in PyPI

2016-07-20 Thread Ben Finney
(Please don't top-post; instead, interleave your responses and trim material you're not responding to.) Rayne via Python-list writes: > Thanks! One more question: Does "pip install" require Internet to > work? Yes, ‘pip’ resolves the dependencies, download the files, and installs them. > Or ar

Re: Python packages listed in PyPI

2016-07-20 Thread Steven D'Aprano
On Thursday 21 July 2016 16:28, Rayne wrote: > Thanks! One more question: Does "pip install" require Internet to work? Yes, you must have internet access. -- Steve -- https://mail.python.org/mailman/listinfo/python-list

Re: Python packages listed in PyPI

2016-07-20 Thread Ben Finney
Rayne via Python-list writes: > May I know if the Python packages listed on the PyPI page > (https://pypi.python.org/pypi) are OS-independent? There is a Trove classifier, “Operating System”, which allows the package maintainer to declare one or more specific operating systems. For example, a p

Re: Python packages listed in PyPI

2016-07-20 Thread Rayne via Python-list
Re: Python packages listed in PyPI Rayne writes: > May I know if the Python packages listed on the PyPI page > (https://pypi.python.org/pypi) are OS-independent? That is, do I > download and install the same package on both Windows and Linux The simple answer is yes. pip install will f

Re: Python packages listed in PyPI

2016-07-20 Thread Pete Forman
Rayne writes: > May I know if the Python packages listed on the PyPI page > (https://pypi.python.org/pypi) are OS-independent? That is, do I > download and install the same package on both Windows and Linux The simple answer is yes. pip install will find the appropriate implementation for your O

Python packages listed in PyPI

2016-07-20 Thread Rayne via Python-list
Hi, May I know if the Python packages listed on the PyPI page (https://pypi.python.org/pypi) are OS-independent? That is, do I download and install the same package on both Windows and Linux systems? Thank you. Regards,Rayne -- https://mail.python.org/mailman/listinfo/python-list