You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Two issues arise with installation of PySpecTools on Windows with the new poetry method. Recommend updating installation instructions in README as a patch.
If installing in a virtual environment, poetry will default create its own virtual environment, which messes up the installation. This can be fixed by setting: poetry config virtualenvs.in-project false and poetry config virtualenvs.create false to prevent creation of any new virtual environments.
There is a known issue with the current release of poetry that results in "ValueError *.whl not found" (see ValueError, whl in cache does not exist when running poetry install again python-poetry/poetry#4163). Several workarounds have been found and are detailed in this thread. The workaround, which I have found works consistently across different versions of poetry and Windows, is to navigate to C:\Users\user\AppData\Local\pypoetry\Cache and delete everything in this folder. Then you can run poetry install successfully.
The text was updated successfully, but these errors were encountered:
Two issues arise with installation of PySpecTools on Windows with the new poetry method. Recommend updating installation instructions in README as a patch.
poetry config virtualenvs.in-project false
andpoetry config virtualenvs.create false
to prevent creation of any new virtual environments.C:\Users\user\AppData\Local\pypoetry\Cache
and delete everything in this folder. Then you can runpoetry install
successfully.The text was updated successfully, but these errors were encountered: