Re: PIP question

2019-09-27 Thread dieter
Gisle Vanem  writes:
> ...
> All this *.dist-info stuff is alien stuff to me, but I guess
> 'pip install --upgrade' uses these?

Most of "pip" is using this. They contain important meta information
(e.g. version number, dependencies, overview information, ...)
about a distribution not directly used by Python.

-- 
https://mail.python.org/mailman/listinfo/python-list


Re: PIP question

2019-09-27 Thread Gisle Vanem

dieter wrote:


directory with some possible leftovers. It there a connection
between this mysterious '-ip' package and this directory?


This is possible. A so called "distribution" can install
packages of a different name (for example, the distribution "Zope"
installs (among others) a package "ZPublisher"). In addition, the
actual installation typically has lost metadata information (e.g.
the version number). Therefore, "pip" may use "*.dist-info" or
"*.egg-info" directories to provide this metadata. Look into those
directories to find out which packages are installed for the
corresponding distribution. You can then check whether those packages
are truely available (and if not delete the *-info* directory).


Thanks for this info.

After deleting the
 f:\programfiler\python36\lib\site-packages\~ip-19.1.1.dist-info
directory and running my script again, the "-ip" is gone.

All this *.dist-info stuff is alien stuff to me, but I guess
'pip install --upgrade' uses these?

BTW, there is no command 'pip uninstall --orphans'. Any
other tool that does the same?

--
--gv
--
https://mail.python.org/mailman/listinfo/python-list


Re: PIP question

2019-09-26 Thread dieter
Gisle Vanem  writes:
> ... pip list ...
> But for my Python 3.6 installation, it claims I have
> an '-ip' package:
> -ip-> f:\programfiler\python36\lib\site-packages
>
> I fail to find one, but I do have a:
>   f:\programfiler\python36\lib\site-packages\~ip-19.1.1.dist-info
>
> directory with some possible leftovers. It there a connection
> between this mysterious '-ip' package and this directory?

This is possible. A so called "distribution" can install
packages of a different name (for example, the distribution "Zope"
installs (among others) a package "ZPublisher"). In addition, the
actual installation typically has lost metadata information (e.g.
the version number). Therefore, "pip" may use "*.dist-info" or
"*.egg-info" directories to provide this metadata. Look into those
directories to find out which packages are installed for the
corresponding distribution. You can then check whether those packages
are truely available (and if not delete the *-info* directory).

-- 
https://mail.python.org/mailman/listinfo/python-list


PIP question

2019-09-26 Thread Gisle Vanem

Hello list.

This little program should print the location of all
my installed Python packages:

-- 8< -- 8< ---
import pip

try:
  packages = pip.get_installed_distributions (local_only=False, skip=())
except AttributeError:
  import pkg_resources   # Python3
  packages = pkg_resources.working_set

package_list = []
for p in sorted (packages):
  print ("%-20s -> %s" % (p.key, p.location))

-- 8< -- 8< ---

But for my Python 3.6 installation, it claims I have
an '-ip' package:
-ip-> f:\programfiler\python36\lib\site-packages

I fail to find one, but I do have a:
  f:\programfiler\python36\lib\site-packages\~ip-19.1.1.dist-info

directory with some possible leftovers. It there a connection
between this mysterious '-ip' package and this directory?


--
--gv
--
https://mail.python.org/mailman/listinfo/python-list