Closed oipotty closed 5 years ago
Thanks for reporting! Looking at
subprocess.CalledProcessError: Command '['git', 'clone', 'https://github.com/plotly/dash-component-boilerplate.git']' returned non-zero exit status 128.
it appears that the git clone
step didn't work. Do you have git installed locally?
Hey Chris, Thanks for the response. Git is installed locally as shown below and works as usual with another repo.
(venv) C:\p\venv\Scripts>git clone https://github.com/plotly/dash-component-boilerplate.git
Cloning into 'dash-component-boilerplate'...
fatal: unable to access 'https://github.com/plotly/dash-component-boilerplate.git/': SSL certificate problem: self signed certificate in certificate chain
(venv) C:\p>git clone https://github.kdc.xxxxxxxxx.com/gtx914/MXReport.git
Cloning into 'MXReport'...
remote: Enumerating objects: 44, done.
remote: Total 44 (delta 0), reused 0 (delta 0), pack-reused 44
Unpacking objects: 100% (44/44), done.
(venv) C:\p>where git
C:\Users\GTX914\AppData\Local\Programs\Git\cmd\git.exe
odd, cloning this repo works fine for me (using either https or ssh), perhaps there's some sort of proxying in your network that's doing something repo-specific? Anyway, here's one possible workaround
git config --global http.sslVerify false
Works great. Must have been the network proxy. Thanks a lot for the quick responses!
Hello! I'm running into an issue when I try and run cookiecutter on the repo. I've went through the steps outlined in the ReadMe. I am running Python 3, and have successfully installed npm and node. However, my code returns an error when trying to run cookiecutter https://github.com/plotly/dash-component-boilerplate.git.
I've seen #23 and I'm still not quite sure if I'm running into the same issue.
Thanks in advance!