-
-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bin folder isn't added to path correctly for Python3.10 (local/bin/ isn't used) #232
Comments
Hi Jacob. I have never seen this behavior. Some questions:
|
I'd also like to note that I followed these steps, and it appears to have fixed my issue (there is now a |
I am also having this issue
|
I am also having the same issue after installing it on pop-os 22.04 with python3.10 |
I was able to resolve as well with this #232 (comment) |
As seen above, I have posted a comment asking Bernát, maintainer of Virtualenv, if he knows why this situation occurs. I have examined several ways of handling this, and all of them are messier than I would like — particularly when it is not clear why this seemingly-odd state happens in the first place. Assuming we are able to collect more information regarding why this occurs, then perhaps it will make sense to consider handling this state within VirtualFish. |
According to the maintainer of Virtualenv, this situation could be caused by an old/corrupted cache folder and isn't something that should happen under normal circumstances. Ergo, I don't think it makes much sense to handle this odd state-of-affairs explicitly in VirtualFish. |
Issue
When creating a venv with python3.10 (in my case
3.10.7
), the bin folder is located under<venv>/local/bin/
, not simply<venv>/bin
. I've looked at the virtualfish source code a bit and it seems this is never explicitly handled, it's just assumed thatbin
. This is also evidenced by the fact that echoing$PATH
showsbin
instead oflocal/bin
. And yes,python3.10
is in my path.To reproduce:
The text was updated successfully, but these errors were encountered: