Python Forum
Diferentes Versões do Python em um mesmo Projeto - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Homework (https://python-forum.io/forum-9.html)
+--- Thread: Diferentes Versões do Python em um mesmo Projeto (/thread-10740.html)



Diferentes Versões do Python em um mesmo Projeto - lordslypher - Jun-04-2018

ola, sou iniciante em Python e estou com um problema, estou usando a versão 3.4 para desenvolver a interface, mas preciso utilizar uma biblioteca que só esta disponível em Python 3.6, alguém poderia me dizer se tem como fazer uma conversão de código ou usar versões diferentes em um mesmo projeto? TY


RE: Diferentes Versões do Python em um mesmo Projeto - j.crater - Jun-04-2018

While people of all nationalities are welcome here, the language used in the Forum is English.
Please make your best effort to translate your question (and thread title). It doesn't need to be perfect English, just understandable.


RE: Diferentes Versões do Python em um mesmo Projeto - Larz60+ - Jun-04-2018

If there is only a version for python 3 (which you should use), to convert to python 2.7 would be a manual operation.
Differences between 3.6 and 3.4 are not great and should be relatively easy to convert.

I'd install, try to run and fix error as encountered


RE: Diferentes Versões do Python em um mesmo Projeto - lordslypher - Jun-04-2018

Hi, I'm a beginner in Python and I'm having a version problem.
For creating the interface of a desktop cryptomedical library I am using version 3.4 (Gtk + Glade), however the library of academic Cryptotomes can only be used in Python 3.6, could anyone tell me how to do a code conversion or use different versions of Python in a project?