We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Especially for people using Python IDEs, it's very annoying having to use PyGeNN from a Visual Studio environment. Brian2 does the following:
from setuptools import mscv _msvc_env = msvc.msvc14_get_vc_env(arch_name)
Caches _msvc_env as the lookup is heavyweight and then just adds the result into the environment passed to subprocess.check_call
_msvc_env
subprocess.check_call
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Especially for people using Python IDEs, it's very annoying having to use PyGeNN from a Visual Studio environment. Brian2 does the following:
Caches
_msvc_env
as the lookup is heavyweight and then just adds the result into the environment passed tosubprocess.check_call
The text was updated successfully, but these errors were encountered: