virtualenv-api
virtualenv-api copied to clipboard
An API for virtualenv/pip
We use this package for a project and we discovered a bug for Windows users. If you want to install dependencies on windows you will receive an `OSError - File...
I'm trying to package your module as an rpm package. So I'm using the typical PEP517 based build, install and test cycle used on building packages from non-root account. -...
I noticed that sometimes the `pip freeze` output can return comments, which can yield weird results when querying the `installed_packages`. I'm not sure if there are other cases, but this...
Hello. `pip search` API was disabled in December 2020 because of a lot of performance issues: https://github.com/pypa/pip/issues/5216#issuecomment-744605466 So tests cases using this feature are also failing now. It's time to...
Hello. This package is directly calling `virtualenv` executable. But it could be not installed in the current environment. Especially in case of Python 3 there it was replaced with new...
Since January 2020 virtualenv package was completely rewritten (v20+). It does not create `no-global-site-packages.txt` file anymore, that's why tests are failing now. In this PR I've added few new methods:...
Fixes https://github.com/sjkingo/virtualenv-api/issues/47
`raise` starts new exception traceback, so the original exception message will be lost. Prefer `six.reraise` to preserve it.
Fixes https://github.com/sjkingo/virtualenv-api/issues/42 Also allows to install packages with -e (editable) option
virtualenv-api is quite useful. Thanks. I presume it's possible to use a VirtualEnvironment() from the Python that created the VirtualEnvironment(). The code would look like this, for example: env =...