Daniel Jakots, 01 Mar 2018 21:50: > On Thu, 1 Mar 2018 21:40:57 -0500, Z Ero <zerotetrat...@gmail.com> > wrote: > > > Not showing in pip3 --list after installed with pkg_add. Not available > > module. Why? > > > > pip and pkg_add are two different package manager. If you run pkg_info, > you should see the package list which would mean it's installed. > You should probably read the FAQ: https://www.openbsd.org/faq/faq15.html
this is not true for python. all correctly pkg_add'ed python packages/libs (e.g. py-jinja2) go to `site-packages` and thus should show up in the site-wide pip list. $ pkg_info | grep py- py-MarkupSafe-1.0 implements an XML/HTML/XHTML markup safe string py-jinja2-2.8.1 fast, optionally sandboxed, Python template engine py-pip-9.0.1p0 Python easy_install replacement py-setuptools-28.6.1p0v0 simplified packaging system for Python modules py-virtualenv-15.1.0p0 virtual Python environment builder $ pip2.7 list Jinja2 (2.8.1) MarkupSafe (1.0) pip (9.0.1) setuptools (28.6.1) virtualenv (15.1.0) -f --