Hello, I want to install ERPNext in Centos 7 and Python 3.9.
I have downloaded
https://raw.githubusercontent.com/frappe/bench/master/playbooks/install.py and when I run: sudo /usr/local/bin/python3.9 install.py --production --user frappe-user
, this error occurs:
Traceback (most recent call last):
File "/home/frappie/install.py", line 433, in <module>
check_distribution_compatibility()
File "/home/frappie/install.py", line 78, in check_distribution_compatibility
dist_name, dist_version = get_distribution_info()
File "/home/frappie/install.py", line 100, in get_distribution_info
current_dist = platform.dist()
AttributeError: module 'platform' has no attribute 'dist'
If I run the install.py script using Python 2.7.5, a message telling that it is recommended to run the script using Python 3, so I am stuck here.
What can I do it?
Thanks
Jaime