Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

--no-clean doesn't work when installing from local paths or dists #2779

Open
qwcode opened this issue May 13, 2015 · 7 comments
Open

--no-clean doesn't work when installing from local paths or dists #2779

qwcode opened this issue May 13, 2015 · 7 comments
Labels
type: bug A confirmed bug or unintended behavior

Comments

@qwcode
Copy link
Contributor

qwcode commented May 13, 2015

--no-clean doesn't work when installing from local projects or local dists

e.g. the following don't work

pip install  --no-clean someprojectdir/
pip install  --no-clean someproject-1.3.tar.gz

for an example, see #2689 (comment)
(this is a tox example, where tox installs from a local zip file)

@qwcode
Copy link
Contributor Author

qwcode commented May 13, 2015

this was seen in v 6.08 and v 6.1.1

in the unreleased 7.0, installing from local dists works (the 2nd case mentioned in the description), but still not the first case.

a caveat here though is that --no-clean now leaves behind the built wheel "source", not the actual sdist source, even if you installed from an sdist.

@techtonik
Copy link
Contributor

Same with 7.1.2

@techtonik
Copy link
Contributor

The way to fix it is to move directory management into centralized temporary stack manager that will keep track on who and where created temp directories. It may also provide transaction support - so that only the context that created temp dir can clean it.

@djpeaco
Copy link

djpeaco commented Feb 17, 2016

I'm having problems using --no-clean at all, not just when installing from local paths. For example

$ pip install --no-cache-dir --no-clean -v netifaces

The final output is:

  ...
  Downloading from URL https://pypi.python.org/packages/source/n/netifaces/netifaces-0.10.4.tar.gz#md5=36da76e2cfadd24cc7510c2c0012eb1e (from https://pypi.python.org/simple/netifaces/)
  Running setup.py (path:/tmp/pip-build-_yORAp/netifaces/setup.py) egg_info for package netifaces
    Running command python setup.py egg_info
  Source in /tmp/pip-build-_yORAp/netifaces has version 0.10.4, which satisfies requirement netifaces from https://pypi.python.org/packages/source/n/netifaces/netifaces-0.10.4.tar.gz#md5=36da76e2cfadd24cc7510c2c0012eb1e
Installing collected packages: netifaces
  Running setup.py install for netifaces ...     Running command /home/djpeaco/.enthought/Canopy_64bit/User/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-_yORAp/netifaces/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-FEEBuO-record/install-record.txt --single-version-externally-managed --compile --install-headers /home/djpeaco/.enthought/Canopy_64bit/User/include/site/python2.7/netifaces
done
  Removing source in /tmp/pip-build-_yORAp/netifaces
Successfully installed netifaces-0.10.4

And nothing is left in /tmp/pip-build-_yORAp/. The same happens if I use --build to specifiy another directory to download into. This is with:

  • pip 8.0.2
  • python 2.7.6
  • centos 7.2

@pradyunsg pradyunsg added the type: bug A confirmed bug or unintended behavior label Aug 21, 2017
@abalkin
Copy link

abalkin commented Sep 25, 2017

Are there any plans to fix this? The only related activity so far is closing another issue (#4679) as a duplicate of this one. I see the same problem with pip 9.0.1, python 3.6.

@chrahunt
Copy link
Member

chrahunt commented Sep 6, 2019

As mentioned in #6982, we may be able to consolidate the logic for handling our temporary directories then the fix for this will be in one place.

@gutsytechster
Copy link
Contributor

With the latest pip version, I have used --no-clean, but I found that if a package is installed then, it does keep the build directory within /tmp/ location. However, if the same package is re-installed, it keeps the new directory, built in the re-installation, but with no content at all.

To me, it seems that the second time the package is installed, pip identifies that the package is installed earlier and does not build the wheel again, hence no content in the temp directory second time. Is it the scenario or is there something else?

For local paths, again I had a git repo cloned, specifically this, and I run the command pip install --no-clean -v .. And it kept the temporary build directory with all the contents preserved. However, I found the same behaviour as above when re-installing i.e. a new directory indeed is created on re-instaling with --no-clean, but with no content.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type: bug A confirmed bug or unintended behavior
Projects
None yet
Development

No branches or pull requests

7 participants