are needed. Even
if I'm a little hazy about 'apple' after a while a quick look at the
Python file shows 'https://itunes.apple.com/search' and I remember it is
to pull down artist/track info from the itunes database.
I also try to remember to run 'pythom -m pip
Peter J. Holzer wrote:
> On 2025-04-18 13:08:36 -0400, Thomas Passin via Python-list wrote:
...
>> When the system launches its application the PYTHONPATH will start with
>> system site directories; local user site directories will be on the
>> PYTHONPATH but since they come later, the python will
On 4/19/2025 4:56 AM, Peter J. Holzer via Python-list wrote:
On 2025-04-18 13:08:36 -0400, Thomas Passin via Python-list wrote:
On 4/18/2025 11:38 AM, Peter J. Holzer via Python-list wrote:
On 2025-04-18 13:24:28 +1200, Greg Ewing via Python-list wrote:
On 18/04/25 9:41 am, Mats Wichmann wrote
On 2025-04-18 13:08:36 -0400, Thomas Passin via Python-list wrote:
> On 4/18/2025 11:38 AM, Peter J. Holzer via Python-list wrote:
> > On 2025-04-18 13:24:28 +1200, Greg Ewing via Python-list wrote:
> > > On 18/04/25 9:41 am, Mats Wichmann wrote:
> > > > There's just not a really great answer to th
On 2025-04-18 17:11:33 +0100, Oscar Benjamin via Python-list wrote:
> On Fri, 18 Apr 2025 at 16:50, Peter J. Holzer via Python-list
> wrote:
> >
> > On 2025-04-18 13:24:28 +1200, Greg Ewing via Python-list wrote:
> > > On 18/04/25 9:41 am, Mats Wichmann wrote:
> > > > There's just not a really gre
On 4/18/2025 11:38 AM, Peter J. Holzer via Python-list wrote:
On 2025-04-18 13:24:28 +1200, Greg Ewing via Python-list wrote:
On 18/04/25 9:41 am, Mats Wichmann wrote:
There's just not a really great answer to this.
Seems to me a system-installed application shouldn't be looking in the
user's
On Fri, 18 Apr 2025 at 16:50, Peter J. Holzer via Python-list
wrote:
>
> On 2025-04-18 13:24:28 +1200, Greg Ewing via Python-list wrote:
> > On 18/04/25 9:41 am, Mats Wichmann wrote:
> > > There's just not a really great answer to this.
> >
> > Seems to me a system-installed application shouldn't
On 2025-04-18 13:24:28 +1200, Greg Ewing via Python-list wrote:
> On 18/04/25 9:41 am, Mats Wichmann wrote:
> > There's just not a really great answer to this.
>
> Seems to me a system-installed application shouldn't be looking in the
> user's .local packages in the first place. That should only b
On 18/04/25 9:41 am, Mats Wichmann wrote:
There's just not a really great answer to this.
Seems to me a system-installed application shouldn't be looking in the
user's .local packages in the first place. That should only be for
things the user has installed "for this user".
--
Greg
--
https
On 4/17/25 15:15, Grant Edwards via Python-list wrote:
On 2025-04-17, Left Right via Python-list wrote:
Also... when installing stuff with pip --user, it is always a package
that is not installed for the system (usually not even available for
the system). How can that "break system pac
On 2025-04-17, Left Right via Python-list wrote:
>> Also... when installing stuff with pip --user, it is always a package
>> that is not installed for the system (usually not even available for
>> the system). How can that "break system packages"?
>
> pip insta
> Also... when installing stuff with pip --user, it is always a package
> that is not installed for the system (usually not even available for
> the system). How can that "break system packages"?
pip installs dependencies. Dependencies may disagree on the version
with the sys
the former means you can also find
*other* commands installed in the virtualenv - including pip.
/path/to/virtualenv//bin/python -m pip install ... will work whether
you activated or not.
pip install ... finds the first command in your PATH named pip, which
may or may not be the one in the
led in the virtualenv - including pip.
/path/to/virtualenv//bin/python -m pip install ... will work whether
you activated or not.
pip install ... finds the first command in your PATH named pip, which
may or may not be the one in the virtualenv, *unless* you've activated
it, because that
On 4/15/2025 5:38 PM, rbowman via Python-list wrote:
On Tue, 15 Apr 2025 14:12:19 -0400, Thomas Passin wrote:
On Linux, at least, it's standard for pip to install into the user's
site-packages location if it's not invoked with admin privileges - even
without --user. Pip will
On Tue, 15 Apr 2025 14:12:19 -0400, Thomas Passin wrote:
> On Linux, at least, it's standard for pip to install into the user's
> site-packages location if it's not invoked with admin privileges - even
> without --user. Pip will emit a message saying so. Well, that used t
On 2025-04-16, Mats Wichmann via Python-list wrote:
> On 4/15/25 16:07, Grant Edwards via Python-list wrote:
>> On 2025-04-15, Thomas Passin via Python-list wrote:
>>
>>> On Linux, at least, it's standard for pip to install into the user's
>>> site
On 4/15/25 16:07, Grant Edwards via Python-list wrote:
On 2025-04-15, Thomas Passin via Python-list wrote:
On Linux, at least, it's standard for pip to install into the user's
site-packages location if it's not invoked with admin privileges - even
without --user. Pip will
On 2025-04-15, Thomas Passin via Python-list wrote:
> On Linux, at least, it's standard for pip to install into the user's
> site-packages location if it's not invoked with admin privileges - even
> without --user. Pip will emit a message saying so. Well, that used to
sing *--user.
This may depend on the OS. On Ubuntu 24.10 with python 3.12.7 I get
$ pip install black
error: externally-managed-environment
× This environment is externally managed
╰─> To install Python packages system-wide, try apt install
python3-xyz, where xyz is the package yo
:
I am using *Python 3.13* in a virtual environment under *Ubuntu Linux
24.04*
.
The version of Python was compiled from source code and installed
with make
altinstall. I attempted to use *pip* to install the *Sphinx* package
into
the virtual environment using the command *pip install sphinx
*/home/jonathan/.locals/lib/python3.13/site-packages* even though I did not
specify *--user* to the *pip install* command. Is this expected behavior? I
wanted Sphinx to be installed in the virtual environment so that it would
be accessible to all users of the virtual environment.
Hi Jonathan
from source code and installed with
make
altinstall. I attempted to use *pip* to install the *Sphinx* package into
the virtual environment using the command *pip install sphinx* in the
virtual environment*.* I expected that *sphinx* would be installed in the
*site-packages* directory in the virtual
What activating gives you is some path fiddling, and some prompt
fiddling (although the prompt fiddling keeps saying it's deprecated).
The latter is a visual clue; the former means you can also find *other*
commands installed in the virtualenv - including pip.
/path/to/virtualenv//bin/python -m p
hon3.13/site-packages* even though I did not
> specify *--user* to the *pip install* command. Is this expected behavior? I
> wanted Sphinx to be installed in the virtual environment so that it would
> be accessible to all users of the virtual environment.
Hi Jonathan,
Many people pu
On Mon, 14 Apr 2025 15:20:13 -0700, Keith Thompson wrote:
> Making the active script executable introdues the risk that you'll
> accidentally execute it rather than sourcing it. If you do that, it
> will probably set up the environment in a new shell process which then
> immediately terminates.
rbowman writes:
> On Mon, 14 Apr 2025 09:55:09 -0400, Thomas Passin wrote:
>> Pip doesn't know about the environment it runs in. It seems to me that
>> you didn't active the venv before you installed using pip. So nothing
>> would have gotten installed into the venv
On 4/14/2025 6:20 PM, Keith Thompson via Python-list wrote:
Thomas Passin writes:
[...]
To activate a venv, you have to source its activate script, which is
in the venv. First you have to mark it as executable. Then you source
it -
source ~/venv/gf4/bin/activate
[...]
No, you don't have to
On 4/14/2025 6:20 PM, Keith Thompson via Python-list wrote:
Thomas Passin writes:
[...]
To activate a venv, you have to source its activate script, which is
in the venv. First you have to mark it as executable. Then you source
it -
source ~/venv/gf4/bin/activate
[...]
No, you don't have to
On Mon, 14 Apr 2025 09:55:09 -0400, Thomas Passin wrote:
> Pip doesn't know about the environment it runs in. It seems to me that
> you didn't active the venv before you installed using pip. So nothing
> would have gotten installed into the venv. So where is the venv that you
Thomas Passin writes:
[...]
> To activate a venv, you have to source its activate script, which is
> in the venv. First you have to mark it as executable. Then you source
> it -
>
> source ~/venv/gf4/bin/activate
[...]
No, you don't have to (and probably shouldn't) mark the script as
executable.
Please include the group in your response; don't just send it to me.
On 4/14/2025 5:09 AM, Jonathan Gossage wrote:
The virtual environment was owned by the user running pip. It was not
owned by root. Does pip not support virtual environments that are owned
by a non-root user and have a
On Sun, 13 Apr 2025 19:10:47 -0400, Jonathan Gossage wrote:
> The version of Python was compiled from source code and installed with
> make altinstall. I attempted to use *pip* to install the *Sphinx*
> package into the virtual environment using the command *pip install
> sphinx* in
On 14/04/25 11:10, Jonathan Gossage via Python-list wrote:
I am using *Python 3.13* in a virtual environment under *Ubuntu Linux 24.04*
.
The version of Python was compiled from source code and installed with make
altinstall. I attempted to use *pip* to install the *Sphinx* package into
the
I am using *Python 3.13* in a virtual environment under *Ubuntu Linux 24.04*
.
The version of Python was compiled from source code and installed with make
altinstall. I attempted to use *pip* to install the *Sphinx* package into
the virtual environment using the command *pip install sphinx* in the
Peter J. Holzer wrote:
> [-- text/plain, encoding quoted-printable, charset: us-ascii, 32 lines --]
>
> On 2025-01-14 11:32:35 +, Chris Green via Python-list wrote:
> > Use a virtual environment, what do I have to do then to make using
> > my program (that uses tkintertable) 'transpar
On 2025-01-14 11:32:35 +, Chris Green via Python-list wrote:
> Use a virtual environment, what do I have to do then to make using
> my program (that uses tkintertable) 'transparent', i.e. I just
> want to be able to run the program from the command prompt like
> any other progra
I wouldn't trust pip to install anything into my system. It's not a
reliable program that I'd recommend anyone to use for things that they
might depend on.
My typical course of action is to create a virtual environment for the
package I need. Install the package into that virt
Xubuntu for many years and acquired a whole lot of python
packages installed with pip, as root. For the last couple of years I
had to use the --break-system-packages option to get things installed.
As far as I'm aware I never hit any dependency problems doing this.
It's probably becaus
Hello Chris,
I do have similar "problems" and still try to get used to the "new way".
Other might correct me. I am not sure yet.
To my current understanding the way to go is to install Python
applications via "pipx". That make the application available in your
system but also isolate it in it
for many years and acquired a whole lot of python
packages installed with pip, as root. For the last couple of years I
had to use the --break-system-packages option to get things installed.
As far as I'm aware I never hit any dependency problems doing this.
It's probably because things I
packages installed with pip, as root. For the last couple of years I
had to use the --break-system-packages option to get things installed.
As far as I'm aware I never hit any dependency problems doing this.
It's probably because things I installed with pip were mostly quite
small, s
failed.
I have asked him to install python-omemo and he has reported this:
$ pip install omemo
[...]
ERROR Failed building wheel for XEdDSA
ERROR Could not build wheels for XEdDSA, which is required to install
pyproject.toml-based projects
Please see the attached screenshot.
Kind regards
has reported this:
$ pip install omemo
[...]
ERROR Failed building wheel for XEdDSA
ERROR Could not build wheels for XEdDSA, which is required to install
pyproject.toml-based projects
Please see the attached screenshot.
Kind regards,
Schimon
On Sat, 3 Aug 2024 16:04:07 -0400
Thomas Passin via
encryption, and a friend of
mine has reported that there is an issue installing it with pip.
I suppoes this is a fault of a package at PyPi, or a fault at my
pyproject.toml.
This is the link to the project:
https://git.xmpp-it.net/sch/Slixfeed#getting-started
Please advise,
This question is
and a friend of
> mine has reported that there is an issue installing it with pip.
>
> I suppoes this is a fault of a package at PyPi, or a fault at my
> pyproject.toml.
>
> This is the link to the project:
> https://git.xmpp-it.net/sch/Slixfeed#getting-started
>
> Ple
Greetings, to one and all!
My name is Schimon, and I am the developer of a news chat bot for the
XMPP network, called Slixfeed.
I have recently added support for OMEMO encryption, and a friend of
mine has reported that there is an issue installing it with pip.
I suppoes this is a fault of a
file contains a virus or potentially unwanted software
That part of the error message tells you the story. Windows thinks
some file in the install has been corrupted with malware.
The Windows installer comes with pip, there's no need to do an extra
install to get it:
python -m pip --ve
software
That part of the error message tells you the story. Windows thinks some
file in the install has been corrupted with malware.
The Windows installer comes with pip, there's no need to do an extra
install to get it:
python -m pip --version
On Windows it's recommended that y
. Windows thinks some
file in the install has been corrupted with malware.
The Windows installer comes with pip, there's no need to do an extra
install to get it:
python -m pip --version
If you can't find the pip *command*, that's a problem with yout PATH
settings. The P
On 7/26/2024 7:25 AM, Lizna Shah via Python-list wrote:
OSError: [WinError 225] Operation did not complete successfully because the
file contains a virus or potentially unwanted software
That part of the error message tells you the story. Windows thinks some
file in the install has been corru
Hello,
I am experiencing a problem with pip not being installed on my laptop and
would appreciate any assistance you can provide.
Here are the details of my issue: -
Operating System: Windows
Python Version: Python 3.10.10
Steps I have already taken to try and resolve the issue:
1. Verified
ultiple times.
Even though I get that error, the python still installs, but when I open the
webui-user.bat file in the stable diffusion folder, it opens up the command
center and says that there's no module named pip.
Please advise on how to fix this problem.
Thank you,
Jay Cadet
Op 20/05/2024 om 23:48 schreef Akkana Peck via Python-list:
Every so often I need to regenerate it (like when Debian updates the system
Python version) but that's easy to do: I don't try to duplicate what's
installed there, I just delete the old venv, create a new one and th
step that's
> mostly not needed(in my use case)
Years ago, I used to have trouble with pip install --user on Debian --
sometimes things would end up under .local, sometimes in other places that I've
forgotten. So I reluctantly started using venvs.
And you know, they work fine. I hav
alled in the default
> system Python install. You might not.
Indeed, which is why all the fuzz about how to fill-in a venv from pip while
installing with apt :-)
With "properly" packaged modules one wouldn't risk (that much) system
breakage, at any rate.
> Maybe you want to get
On 11/6/2023 5:04 PM, Karsten Hilbert via Python-list wrote:
Am Mon, Nov 06, 2023 at 02:43:47PM -0700 schrieb Mats Wichmann via Python-list:
I had just hoped someone here might have a handy pointer for
how to deal with modules having to be installed from pip for
use with an apt-installed
Am Mon, Nov 06, 2023 at 02:43:47PM -0700 schrieb Mats Wichmann via Python-list:
> >I had just hoped someone here might have a handy pointer for
> >how to deal with modules having to be installed from pip for
> >use with an apt-installed python-based application.
>
> Th
On 11/6/23 14:28, Karsten Hilbert via Python-list wrote:
I had just hoped someone here might have a handy pointer for
how to deal with modules having to be installed from pip for
use with an apt-installed python-based application.
That just shouldn't happen - such packages are supposed
ing list.
Yeah, I guess. I know all this stuff about python modules
being packaged for Debian and how apt handles dependencies
etc etc.
I had just hoped someone here might have a handy pointer for
how to deal with modules having to be installed from pip for
use with an apt-installed python-ba
complexity.
> >> >
> >> > Is there a suggested proper path to deal with that (Debian is
> >> > of interest to me here) ?
> >>
> >> Yes, as previously mentioned, use virtual environments.
> >>
> > How does one "fill" that ve
Karsten Hilbert wrote at 2023-11-5 23:19 +0100:
> ...
>do you happen to know where to read up on how to fit a pip
>constraint file into a Debian package creation workflow ?
I have only rudimentary `apt` knowledge.
I know it is quite flexible, e.g. it used to handle `flash`
in a speci
o/env/bin/foo /usr/local/bin/foo
>>
>> and then you could just type 'foo' to run it.
>
> This all being nice and well, but:
>
> How does one "fill" that venv with packages from pip during
>
> apt-get install python3-app-of-interest
>
>
Am Sun, Nov 05, 2023 at 03:00:41PM + schrieb Chris Green via Python-list:
> > * contact every single maintainer of every single one of the packages
> > that needs updating and persuade them to update their packages and
> > reassure them that you are getting all the other package main
sr/local/lib/foo, under which you would
> create a virtual environment and install the 'foo' package inside it,
> and then you could do:
>
> ln -s /usr/local/lib/foo/env/bin/foo /usr/local/bin/foo
>
> and then you could just type 'foo' to run it.
This all bein
gt; >any complexity.
> >
> >Is there a suggested proper path to deal with that (Debian is
> >of interest to me here) ?
>
> Complex applications may maintain a set of "known workable versions"
> associated with the application's releases.
> They may desc
know of a
> > resource for learning the *canonical* way of packaging a
> > Python application for installation via apt which
> >
> > - needs some packages available via apt
> > - needs some packages only available via pip
> > - needs some packages newer than what
> >
>> > Since you seem knowledgeable in this area: Do you know of a
>> > resource for learning the *canonical* way of packaging a
>> > Python application for installation via apt which
>> >
>> > - needs some packages available via apt
>> &
n application for installation via apt which
>
> - needs some packages available via apt
> - needs some packages only available via pip
> - needs some packages newer than what is available via apt
>
> ?
I suspect the answer to that is that you would have to:
* create packages
On 2023-11-03, Karsten Hilbert wrote:
> Am Thu, Nov 02, 2023 at 09:35:43PM - schrieb Jon Ribbens via Python-list:
>
> Regardless of ...
>
>> Because pip barely plays well by itself, let alone with other package
>> managers at the same time.
>
> ... being true
apt
- needs some packages only available via pip
- needs some packages newer than what is available via apt
?
Thanks,
Karsten
--
GPG 40BE 5B0E C98E 1713 AFA6 5BC0 3BEA AC80 7D4F C89B
--
https://mail.python.org/mailman/listinfo/python-list
is
>of interest to me here) ?
Complex applications may maintain a set of "known workable versions"
associated with the application's releases.
They may describe those "known workable versions" in a `pip` constraint file.
In this case, you can upgrade to a new application
Am Thu, Nov 02, 2023 at 09:35:43PM - schrieb Jon Ribbens via Python-list:
Regardless of ...
> Because pip barely plays well by itself, let alone with other package
> managers at the same time.
... being true ...
> > I do only install a few things using pip.
>
> Are the
on they have
> >> > finally eliminated all dependencies on python2.
> >> >
> >> > So they now have only python3 and there is no python executable in
> >> > PATH.
> >> >
> >> > There's still both /usr/bin/pip a
y globally installed pip packages
Odds are you don't want to. The internet is full of surprises about
dependency problems when stuff is blindly updated; the set of Python
packages in the apt repositories is carefully curated to avoid these
problems - and this is part of the reason w
On 2023-11-02, Chris Green wrote:
> Jon Ribbens wrote:
>> On 2023-11-02, Dieter Maurer wrote:
>> > Chris Green wrote at 2023-11-2 10:58 +:
>> >> ...
>> >>So, going on from this, how do I do the equivalent of "apt update; apt
>&
iminated all dependencies on python2.
>> >
>> > So they now have only python3 and there is no python executable in
>> > PATH.
>> >
>> > There's still both /usr/bin/pip and /usr/bin/pip3 but they're
>> > identical so presuably I can now simp
ow have only python3 and there is no python executable in
> > PATH.
> >
> > There's still both /usr/bin/pip and /usr/bin/pip3 but they're
> > identical so presuably I can now simply use pip and it will be a
> > python3 pip.
> >
> >
> >
Jon Ribbens wrote:
> On 2023-11-02, Dieter Maurer wrote:
> > Chris Green wrote at 2023-11-2 10:58 +:
> >> ...
> >>So, going on from this, how do I do the equivalent of "apt update; apt
> >>upgrade" for my globally installed pip packages?
> >
table in
> PATH.
>
> There's still both /usr/bin/pip and /usr/bin/pip3 but they're
> identical so presuably I can now simply use pip and it will be a
> python3 pip.
>
>
> So, going on from this, how do I do the equivalent of "apt update; apt
> upgrade" f
On 2023-11-02, Dieter Maurer wrote:
> Chris Green wrote at 2023-11-2 10:58 +:
>> ...
>>So, going on from this, how do I do the equivalent of "apt update; apt
>>upgrade" for my globally installed pip packages?
>
> `pip list -o` will tell you for which pa
Chris Green wrote at 2023-11-2 10:58 +:
> ...
>So, going on from this, how do I do the equivalent of "apt update; apt
>upgrade" for my globally installed pip packages?
`pip list -o` will tell you for which packages there are upgrades
available.
`pip install -U ...` will up
I have a couple of systems which used to have python2 as well as
python3 but as Ubuntu and Debian verions have moved on they have
finally eliminated all dependencies on python2.
So they now have only python3 and there is no python executable in
PATH.
There's still both /usr/bin/pip and /us
g - but
if you're using a different distribution of Python, you are also quite
possibly using their package manager rather than pip). Staying on a
version of Python that hasn't had new features since 2010 and hasn't
had bug fixes since 2020 is going to become increasingly problematic
- but
> if you're using a different distribution of Python, you are also quite
> possibly using their package manager rather than pip). Staying on a
> version of Python that hasn't had new features since 2010 and hasn't
> had bug fixes since 2020 is going to become inc
ython 2.7.18, the very last version of Python 2,
was released in 2020 and has not changed since. There are not even
security patches being released (at least, not from python.org - but
if you're using a different distribution of Python, you are also quite
possibly using their package manager rat
On 9/27/23 14:02, Zuri Shaddai Kuchipudi via Python-list wrote:
Why it's trying to select an incompatible version when you ask to
upgrade is not something I'd like to speculate on, for me personally
that's a surprise. Maybe something else you did before?
Also make sure you'
On Wednesday, 27 September 2023 at 21:32:53 UTC+2, Mats Wichmann wrote:
> On 9/27/23 05:17, Zuri Shaddai Kuchipudi via Python-list wrote:
> > hello everyone this the error that im getting while trying to install and
> > upgrade pip on what is the solution for it?
> >
On 9/27/23 05:17, Zuri Shaddai Kuchipudi via Python-list wrote:
hello everyone this the error that im getting while trying to install and
upgrade pip on what is the solution for it?
C:\repository\pst-utils-pc-davinci-simulator>pip install
You are using pip version 7.0.1, however version 23.
On Thu, 28 Sept 2023 at 01:16, Zuri Shaddai Kuchipudi via Python-list
wrote:
>
> hello everyone this the error that im getting while trying to install and
> upgrade pip on what is the solution for it?
>
The solution is to upgrade to Python 3.
https://pip.pypa.io/en/latest/develop
On 9/27/2023 7:17 AM, Zuri Shaddai Kuchipudi via Python-list wrote:
hello everyone this the error that im getting while trying to install and
upgrade pip on what is the solution for it?
C:\repository\pst-utils-pc-davinci-simulator>pip install
You are using pip version 7.0.1, however vers
hello everyone this the error that im getting while trying to install and
upgrade pip on what is the solution for it?
C:\repository\pst-utils-pc-davinci-simulator>pip install
You are using pip version 7.0.1, however version 23.2.1 is available.
You should consider upgrading via the 'pip
On 9/13/2023 11:39 PM, Jacob Keeler via Python-list wrote:
I downloaded Python 3.11.5, and there was nothing in the “Scripts” file,
and there was no Pip. I would like to know why.
I just downloaded the 3.11.5 64-bit installer for Windows from
python.org and ran it. This was an upgrade since
On 9/13/2023 11:39 PM, Jacob Keeler via Python-list wrote:
I downloaded Python 3.11.5, and there was nothing in the “Scripts” file,
and there was no Pip. I would like to know why.
What do you mean by "downloaded"? And are you talking about Windows?
Did you download the inst
> I downloaded Python 3.11.5, and there was nothing in the “Scripts” file,
> and there was no Pip. I would like to know why.
>
Can't help with the empty/missing Scripts folder. Does running
python -m ensurepip
get you a working pip? Which you should then run as
python -m
I downloaded Python 3.11.5, and there was nothing in the “Scripts” file,
and there was no Pip. I would like to know why.
Thank you,
Jacob
--
https://mail.python.org/mailman/listinfo/python-list
On Fri, Jul 21, 2023 at 11:08 AM Larry Martell wrote:
>
> I am trying to set up and maintain a venv with pip-sync. On my bare
> metal I have the apparmor python package installed, but it is not
> installed in my venv and it's not in my requirements file. When I run
> pip-s
Did maybe pip-sync create the venv with --system-site-packages (at least that's
the commandline option for pip)
I only saw behaviour like this so far, when my venv was with
--system-site-packages and a package was installed by the system.
Sorry for the first mess.
Cheers
Lars
Lars Li
t | Register Court: Amtsgericht Mannheim
Registernummer | Register No.: HRB 110579
USt-ID | VAT ID: DE234663798
Informationen zum Datenschutz | Information about privacy policy
https://www.solute.de/ger/datenschutz/grundsaetze-der-datenverarbeitung.php
--- Begin Message ---
Did maybe pip-sync cr
I am trying to set up and maintain a venv with pip-sync. On my bare
metal I have the apparmor python package installed, but it is not
installed in my venv and it's not in my requirements file. When I run
pip-sync I get:
Found existing installation: apparmor 2.13.3
ERROR: Cannot unin
1 - 100 of 900 matches
Mail list logo