This is real headache!
I cannot install bench in my CentOS 7 system.
when I use sudo python3.6 -m pip install frappe-bench
, this is shown:
Requirement already satisfied: Click==7.0 in /usr/local/lib/python3.6/site-packages (from frappe-bench) (7.0)
Requirement already satisfied: GitPython==2.1.15 in /usr/local/lib/python3.6/site-packages (from frappe-bench) (2.1.15)
Requirement already satisfied: honcho==1.0.1 in /usr/local/lib/python3.6/site-packages (from frappe-bench) (1.0.1)
Requirement already satisfied: Jinja2==2.10.3 in /usr/local/lib/python3.6/site-packages (from frappe-bench) (2.10.3)
Requirement already satisfied: python-crontab==2.4.0 in /usr/local/lib/python3.6/site-packages (from frappe-bench) (2.4.0)
Requirement already satisfied: requests==2.22.0 in /usr/local/lib/python3.6/site-packages (from frappe-bench) (2.22.0)
Requirement already satisfied: semantic-version==2.8.2 in /usr/local/lib/python3.6/site-packages (from frappe-bench) (2.8.2)
Requirement already satisfied: setuptools in /usr/local/lib/python3.6/site-packages (from frappe-bench) (40.8.0)
Requirement already satisfied: six in /usr/local/lib/python3.6/site-packages (from frappe-bench) (1.12.0)
Requirement already satisfied: virtualenv in /usr/local/lib/python3.6/site-packages (from frappe-bench) (16.6.0)
Requirement already satisfied: gitdb2<3,>=2 in /usr/local/lib/python3.6/site-packages (from GitPython==2.1.15->frappe-bench) (2.0.6)
Requirement already satisfied: MarkupSafe>=0.23 in /usr/local/lib64/python3.6/site-packages (from Jinja2==2.10.3->frappe-bench) (1.1.1)
Requirement already satisfied: python-dateutil in /usr/local/lib/python3.6/site-packages (from python-crontab==2.4.0->frappe-bench) (2.8.1)
Requirement already satisfied: chardet<3.1.0,>=3.0.2 in /usr/local/lib/python3.6/site-packages (from requests==2.22.0->frappe-bench) (3.0.4)
Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.6/site-packages (from requests==2.22.0->frappe-bench) (1.25.11)
Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.6/site-packages (from requests==2.22.0->frappe-bench) (2020.11.8)
Requirement already satisfied: idna<2.9,>=2.5 in /usr/local/lib/python3.6/site-packages (from requests==2.22.0->frappe-bench) (2.8)
Requirement already satisfied: smmap2>=2.0.0 in /usr/local/lib/python3.6/site-packages (from gitdb2<3,>=2->GitPython==2.1.15->frappe-bench) (3.0.1)
Requirement already satisfied: smmap>=3.0.1 in /usr/local/lib/python3.6/site-packages (from smmap2>=2.0.0->gitdb2<3,>=2->GitPython==2.1.15->frappe-bench) (3.0.4)
That is why my only option is to clone the repository by using git clone https://github.com/frappe/bench bench-repo
and then using sudo python3.6 -m pip install -e bench-repo
Any help, please?
Regards
Jaime