-
Notifications
You must be signed in to change notification settings - Fork 132
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
ERROR: Could not find an activated virtualenv (required). #777
Comments
@freakboy3742: This was caused by the environment variable In this case you do appear to be in a virtual environment, but my guess is that when you started the Gradle daemon, you were in a different environment with a different version of Python. On macOS at least, subsequent invocations of Gradle don't update the daemon's environment (gradle/gradle#12905 and gradle/gradle#10483). So when you did this build with Python 3.10, it located the The fix is to pass through the |
Nice catch. Your analysis of my setup is dead on - I have |
Creating a new venv worked for me. While activated, I saw the same activation requirement error. Since recreating worked, I will blame renaming the venv directory after init for pip's failure to detect the venv. |
As the venv documentation says, venvs are "Not considered as movable or copyable" – or renamable. |
From beeware/toga#1747, with Chaquopy 14.0.0:
The text was updated successfully, but these errors were encountered: