Matt Davis

Results 600 comments of Matt Davis

I got the following error with the `--system` flag: ``` [pipenv.exceptions.InstallError]: ERROR: Could not install packages due to an OSError: [Errno 13] Permission denied: 'lazy.py' [pipenv.exceptions.InstallError]: Consider using the `--user`...

It worked though if I did `pipenv install --extra-pip-args="--user" --system` -- something was trying to overwrite a system file that was either in use or that my user lacked permission...

@jkueloc I cannot reproduce, even with the lock file you have checked in the `pipenv sync` works for me. Do you have an example of the github action that failed...

@jkueloc It looks like the Dockerfile itself isn't pinned on pipenv and builds fine, but that the build_contianers.sh script runs pipenv on Jenkins directly before kicking off the Docker build:...

@jkueloc Actually I just figured out its the dev dependencies that are having the issue and not the default -- let me dig a littler deeper now that I can...

@jkueloc The problem is definitely with the pre-creation of the virtualenv -- not sure why though. ``` matteius@matteius-VirtualBox:~/pipenv-triage/LOC$ cp concordia/Pipfile.lock . matteius@matteius-VirtualBox:~/pipenv-triage/LOC$ pipenv --rm /home/matteius/.local/lib/python3.10/site-packages/pkg_resources/__init__.py:123: PkgResourcesDeprecationWarning: 0.1.43ubuntu1 is an invalid...

@jkueloc It seems with the `--verbose` flag that pre-creating the virtualenv, causes a setup.py error on `autobahn==22.7.1` ``` Collecting autobahn==22.7.1 Using cached autobahn-22.7.1.tar.gz (476 kB) Preparing metadata (setup.py): started Preparing...

@jkueloc Short answer, you can `pip install packaging` after activating the virtualenv, and then the `pipenv sync --dev` does work with a pre-created virtualenv. There is a warning that it...

> Why sync versus install? @jkueloc No real reason, I am just used to doing that, but it doesn't validate the meta hash of the lockfile the way `pipenv install...

@Jmennius I was able to reproduce your issue -- I think it has to do with I don't see a version specifier in the setup.py for `pyinstaller` -- https://github.com/pyinstaller/pyinstaller/blob/develop/setup.py#L253-L272 This...