When I configure odoo with pycharm, I face the following issue:
My personal experience - python 3.8 doesn't fully compatible with Odoo. So I changed it with lower version and works great.
You can try with python 3.7 or 3.6 version.
Related
i installed it but pycharm and google corab always error
[[enter image description here](https://i.stack.imgur.com/KMvYO.jpg)](https://i.stack.imgur.com/QsQji.jpg)
how to fix it?
installed tensorflow but i couldn't fix the error
Tensorflow's latest version TF 2.11 supports only python 3.10 as mentioned here. Please try again after downgrading the python version from 3.11.
Please check this similar issue for your reference.
Has anyone installed Pythonnet on Python 3.10.0 (was pre-installed with Mac OS)? When I try to install Pythonnet through PIP, it complains that there is some issue with the package, and not with PIP!! After searching a bit on Google , I found that Pythonnet is currently not supported on Python 3.10.
So the next step was to install an older version (supported) of Python e.g. 3.7 on Mac and then make it the default Python environment. However, even after using the right set of commands, I'm unable to do switch from 3.10 to 3.7.
enter image description here
Can someone please tell me where am I going wrong?
Try installing a preview with --pre pip parameter. Python.NET 3.0.0 is currently in preview and is about to be released, it supports Python 3.10.
When you installed python 3.9 tensorflow on new Mac M1 chip, you would probably come to this bug when you run Kmeans.predict():
nonetype' object has no attribute 'split'
I have searched online for a long time but cannot find any useful solution. So if you happen to have the same issue as mine, maybe you can try this:
Find the file threadpoolctl.py under /Users/YOURNAME/miniforge3/envs/tensorflow/lib/python3.9/site-packages
Replace it by the file in this website:
https://github.com/joblib/threadpoolctl/blob/master/threadpoolctl.py
Restart your python
Hope it helps.
+100500 to the karma: worked for me as well within Python 3.8. The version of threadpoolctl.py was "2.1.0" - after making an update by version "3.2.0.dev0" KMeans started to work.
I'm new to tensorflow and I'm having some problems with the installation. I searched through the official website, without any success. My computer runs on windows, with python version 3.4. None of the sources on the internet seemed to have any command lines for this specific case.
I would greatly appreciate your help:)
I'm pretty sure they added support for python 3.5 only,
But lately they added support for python 3.6 as well.
The only way i can see is that you would have to upgrade, I'm not such a pro with this but that's all i know because i had an import problem with tensorflow which i haven't been able to solve since
You can get the full instructions at Install TF on Windows
I hope you already installed python3 and pip3, if not follow
C:\> pip3 install --upgrade tensorflow
What is the recommended version of python to use with openerp/odoo? Is it 2.7 or 3
All these days I was using 2.7 if I choose ver 3 will it cause any problems?
Odoo work with Python 2.7 up to version 10.0
For version 11.0, Python must be on version 3.5 or higher
I won't work yet with python 3. The best python version to have is the highest 2.7.* (at least 2.7.3).
You can see the major dependencies and python version in the installing tutorial:
Installing Odoo (version 8.0)
Installing Odoo (version 9.0)
On my operating system, python 3 is the default so to start an instance without using a bundle (in my case I clone the github repository), I use this command:
python2 ~/path-to-my-odoo-git/odoo.py -d odoo-test
As for when odoo will work with python 3, there is a number of needed python package dependencies not already ported to python 3. Even if they were already all ported, Odoo itself would take some efforts (without talking about all the ecosystem of custom addons which would get unusable untill ported).
So I guess it will not be available before 1 year and most probably not available before 2 or 3 years.