I am working on a Django project.
Recently while working on my new project, I had to delete py an open project folder.
Now I am not able to access the list of pip packages from any of the newly created directories except being shown pip version number when I activate venv. However the pip list is accessible from any of the previously created directories even if create a venv in that foldeer and activate that venv.
My file directory structures are as given below:
pip list accessible in records_log folder of the following directory:
C:UsersabcProjectsPython_proj_1Python_proj_mlrecords_log
pip list is not accessible in newly created sub directory projects_practice folder:
C:UsersabcProjectsPython_proj_1Python_proj_mlprojects_practicerecords_log
The mini conda is installed at the following location:
C:Usersabcminiconda3
I am able to mitigate this issue by changing the following line in pyvenv.cfg to True, which is supposed to remain default remains ‘false’ in all normally working directories.
include-system-site-packages = true
But as I know that there is something amiss. I do not wish to resort to using this work around like the one mentioned above. I need help to fix this issue and get the system as it was before I deleted the project file which led to this abnormal behavour.