Jul-28-2020, 07:59 PM
So I had a project I was working on in a pipenv virtual environment. My computer took a crap and I had to re-install my OS. Luckily I had a copy of the .virtualenv folder backed up. I tried to copy this folder back into my fresh install, and run a pipenv shell in the dir, but was given a brand new virutal environment, with no dependencies installed.
Is there any way to migrate that original virtual environment to the new pc? Dependencies and all? I thought that was the point of using a virtual environment?
If not, I would like to know how to get this back up and running. When I do pipenv install it fails to get a lock. When I do pipenv install --skip-lock I'm still getting general failures to find a place to install the dependencies. Everything just seems super out of sync.
When I look in my pip file, I didn't specify version numbers for dependencies, and I feel this might have something to do with my issues. I just have entries like
Anybody have some advice on how I can get my program up and running again?
Thank you
Is there any way to migrate that original virtual environment to the new pc? Dependencies and all? I thought that was the point of using a virtual environment?
If not, I would like to know how to get this back up and running. When I do pipenv install it fails to get a lock. When I do pipenv install --skip-lock I'm still getting general failures to find a place to install the dependencies. Everything just seems super out of sync.
When I look in my pip file, I didn't specify version numbers for dependencies, and I feel this might have something to do with my issues. I just have entries like
json-decode = "*" datetime = "*" configparser = "*" pyodbc = "*".
Anybody have some advice on how I can get my program up and running again?
Thank you