[Distutils] Re: pip install very slow

2020-07-20 Thread Tuan Azbaby
thanks you https://azbaby.vn/ -- Distutils-SIG mailing list -- distutils-sig@python.org To unsubscribe send an email to distutils-sig-le...@python.org https://mail.python.org/mailman3/lists/distutils-sig.python.org/ Message archived at

[Distutils] Re: pip install very slow

2020-06-28 Thread Stuart McGraw
Yes, that does seems to be the problem. For now I was able move the large directory out of the project directory and put a symlink in the project directory pointing to it. It appears that pip/setuptools doesn't follow symlinks thankfully. Not ideal but workable for now. On 6/25/20 2:58 PM,

[Distutils] Re: pip install very slow

2020-06-28 Thread Stuart McGraw
Thanks but that's a different "data/" (it's a small one in the package directory; the large problem "data" directory is in the project directory. Before I sent my mail I thought the two data's might cause confusion and meant to change the name of one but forgot. :-( On 6/27/20 8:06 PM, Bert JW

[Distutils] Re: pip install very slow

2020-06-27 Thread Bert JW Regeer
Isn't your data folder mentioned here in your setup.py? > On Jun 25, 2020, at 12:12, Stuart McGraw wrote: > > package_data={'mypackage': ['data/*.csv', 'tmpl/*.jinja',]}, -- Distutils-SIG mailing list -- distutils-sig@python.org To unsubscribe send an email to distutils-sig-le...@python.org

[Distutils] Re: pip install very slow

2020-06-25 Thread Bernát Gábor via Distutils-SIG
See https://github.com/pypa/pip/issues/7555 for details on this. Stuart McGraw wrote: “Hello, First time trying to use Python's package tools and I'm attempting to use pip to install from a local project:  python3 -m pip install --user --upgrade --no-deps ./ I have a simple directory