Re: [BangPypers] Query regarding packages in PyPI.

2017-06-11 Thread Abhas Bhattacharya
Or you can do something like create a list of all the dependencies (recursively) of all the packages and then use pip to only fetch/download all those packages. Later you can take all those files and pip install them from the local folder. You can do something like pip path/packagename.tar.gz to i

Re: [BangPypers] Query regarding packages in PyPI.

2017-06-07 Thread Harsh Gupta
If you are want download a lot of packages and can't do pip install, you can try creating a local mirror of PyPI. You can use the following tools for that: * Bandersnatch https://bitbucket.org/pypa/bandersnatch * DevPi http://doc.devpi.net/latest/ On 7 June 2017 at 18:53, Rajvi Dhimar wrote: >