-
Notifications
You must be signed in to change notification settings - Fork 64
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
Default python version #337
Comments
One workaround while we find a better solution is to ensure we install the packages in the right order. But we should implement something better in the long term. |
I am trying to update stringsifter to Python 3.9. For the packages that don't run in Python 3.9, we could display a warning message in the package and let the user handle this (by installing packages in the right order of fixing the path manually). |
In #331 stringsifter is installed in Python 3.9. adconnectdump.vm is the only package that uses a Python version different than 3.9. So I suggest:
All this needs to be documented. @vm-packages do we agree on this? If so, I can take care of documenting this. |
Sounds good to me |
Partially resolved. Rest tracked in #673 |
We are installing python3 libraries using python 3.9 in libraries.python3.vm. But some other packages require a different python version. For example:
So if we install libraries.python3.vm and then adconnectdump.vm the path will looks something like this:
Which means that
python
will usepython2
by default. This tools don't really need the python version added to the path, just the tool executable.How should we handle this?
We could add a function in common that could reorder the path to ensure python3.9 is on top and call it from these kind of package. What do you think? Other ideas?
The text was updated successfully, but these errors were encountered: