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
It would be nice to be able to install git dependencies in wenv. I suspect the only thing needed for this to work is to have git installed inside the wine bottle.
The text was updated successfully, but these errors were encountered:
i figured out how to install git in the wenv wine environment
fish shell code
# replace `~/venv/` with path to your virtual environmentset-x WINEPREFIX ~/venv/share/wenv/win32/
# can also download manually
wget 'https://github.com/git-for-windows/git/releases/download/v2.42.0.windows.1/Git-2.42.0-32-bit.exe'# run through the installer gui# for me it hung indefinitely at the end of the install# but it seems to have finished the install before hanging
wine Git-2.42.0-32-bit.exe
a normal wenv pip install <package> will then work with git dependencies
It would be nice to be able to install git dependencies in wenv. I suspect the only thing needed for this to work is to have git installed inside the wine bottle.
The text was updated successfully, but these errors were encountered: