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

pip uninstall afdko fails #241

Closed
miguelsousa opened this issue Jan 11, 2018 · 21 comments
Closed

pip uninstall afdko fails #241

miguelsousa opened this issue Jan 11, 2018 · 21 comments
Assignees

Comments

@miguelsousa
Copy link
Member

Running pip uninstall afdko fails like this,

Exception:
Traceback (most recent call last):
  File "/Users/msousa/fdk-test/lib/python2.7/site-packages/pip/basecommand.py", line 215, in main
    status = self.run(options, args)
  File "/Users/msousa/fdk-test/lib/python2.7/site-packages/pip/commands/uninstall.py", line 76, in run
    requirement_set.uninstall(auto_confirm=options.yes)
  File "/Users/msousa/fdk-test/lib/python2.7/site-packages/pip/req/req_set.py", line 346, in uninstall
    req.uninstall(auto_confirm=auto_confirm)
  File "/Users/msousa/fdk-test/lib/python2.7/site-packages/pip/req/req_install.py", line 754, in uninstall
    paths_to_remove.remove(auto_confirm)
  File "/Users/msousa/fdk-test/lib/python2.7/site-packages/pip/req/req_uninstall.py", line 115, in remove
    renames(path, new_path)
  File "/Users/msousa/fdk-test/lib/python2.7/site-packages/pip/utils/__init__.py", line 267, in renames
    shutil.move(old, new)
  File "/usr/local/Cellar/python/2.7.14/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 316, in move
    copy2(src, real_dst)
  File "/usr/local/Cellar/python/2.7.14/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 144, in copy2
    copyfile(src, dst)
  File "/usr/local/Cellar/python/2.7.14/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 96, in copyfile
    with open(src, 'rb') as fsrc:
IOError: [Errno 2] No such file or directory: '/Users/msousa/fdk-test/bin/buildcff2vf'
@cjchapman
Copy link
Contributor

The pip uninstall afdko process seems to queue up both mixed case and lowercase versions of the same file names for removal, e.g.:

Uninstalling afdko-2.6.24:
...
  /Users/cchapman/Envs/fdk_install_test/bin/buildCFF2VF
...
  /Users/cchapman/Envs/fdk_install_test/bin/buildcff2vf
 ...

...even though only the mixed case version of the file name actually exists (i.e. buildCFF2VF).

It does that for all of these files:

buildCFF2VF
buildcff2vf
buildMasterOTFs
buildmasterotfs
checkOutlinesUFO
checkoutlinesufo
compareFamily
comparefamily
copyCFFCharstrings
copycffcharstrings
makeInstances
makeinstances
makeInstancesUFO
makeinstancesufo
stemHist
stemhist

…but it only looks for the mixed case version (and not the lowercase version) of:

mergeFonts

@anthrotype, any idea why this might be happening?

@frankrolf
Copy link
Member

Is the case even important? Quick command-line tests don’t fail, for instance:

touch FILE.txt
rm file.txt

Maybe a file is removed twice and fails the 2nd time around?

@cjchapman
Copy link
Contributor

cjchapman commented Jan 19, 2018

@frankrolf, yes, that's exactly the problem, it's getting removed the first time, and then we get the failure that Miguel reported the second time. It successfully removed buildCFF2VF and then threw an exception when it tried to remove buildcff2vf.

@khaledhosny
Copy link
Collaborator

There are also case-sensitive file systems.

@frankrolf
Copy link
Member

Oh yes, of course. pip also has to work on Windows, my apologizes.

@anthrotype
Copy link
Member

windows is case insensitive too. Linux is case sensitive.
(I haven't looked into the issue with pip uninstall yet, sorry..)

@cjchapman
Copy link
Contributor

The pip show -f command only shows the mixed case file names:

$ pip show -f afdko | grep -i "buildcff2vf"
  ../../../bin/buildCFF2VF
  afdko/Tools/SharedData/FDKScripts/buildCFF2VF.py
  afdko/Tools/SharedData/FDKScripts/buildCFF2VF.pyc

@miguelsousa
Copy link
Member Author

@cjchapman do you know what actually gets installed? Is it camel case or all lowercase? Is that true for all platforms?

@cjchapman
Copy link
Contributor

@miguelsousa, mixed case is what is actually installed on OS X. I haven't tried any other platforms.

@miguelsousa
Copy link
Member Author

Then why is the process trying to uninstall the lowercased variants?

@cjchapman
Copy link
Contributor

I don't know, that's what I'm trying to figure out.

@cjchapman
Copy link
Contributor

This issue seems to be related: pypa/pip#2834

I can confirm that when I step through the pip code in the debugger while uninstalling afdko that I hit this line in ConfigParser.py:

                        optname = self.optionxform(optname.rstrip())

which brings us to this code, also in ConfigParser.py:

    def optionxform(self, optionstr):
        return optionstr.lower()

@miguelsousa
Copy link
Member Author

I was just cross referencing your list with the contents of setup.py. You singled out mergeFonts. Does the same happen to rotateFont? If yes, then this issue seems to affect only console scripts.

@cjchapman
Copy link
Contributor

I missed it earlier.

For mergeFonts and rotateFont it only tries to remove the mixed case version.

@cjchapman
Copy link
Contributor

I did the experiment of renaming all the target filenames in entry_points['console_scripts'] in setup.py to lowercase and confirmed that I can cleanly pip uninstall afdko in that case (on my Mac, at least).

@miguelsousa, should I proceed with this workaround? Also what are your thoughts on renaming mergeFonts and rotateFont to be all lowercase for consistency?

@miguelsousa
Copy link
Member Author

Yes, that seems fine to me.
As for renaming mergeFonts and rotateFont I'd leave them as is.

cjchapman added a commit that referenced this issue Jan 26, 2018
renamed mixed case console scripts to lowercase.
@anthrotype
Copy link
Member

looks like it's a known issue of pip (the label says "awaiting PR")
pypa/pip#3801

@anthrotype
Copy link
Member

and this duplicate issue pypa/pip#4771

@cjchapman
Copy link
Contributor

@anthrotype, also pypa/pip#2834, as I mentioned earlier

@cjchapman
Copy link
Contributor

cjchapman commented Jan 26, 2018

At least we know we're not alone in dealing with this problem. :-)

miguelsousa pushed a commit that referenced this issue Jan 26, 2018
renamed mixed case console scripts to lowercase.
@miguelsousa
Copy link
Member Author

Fixed by c79e754

schriftgestalt pushed a commit to schriftgestalt/afdko that referenced this issue May 18, 2019
renamed mixed case console scripts to lowercase.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants