-
-
Notifications
You must be signed in to change notification settings - Fork 17
SQLite and make not installed on Windows 7 #41
Comments
Maybe related to #34 |
Can you report the output of |
Ok, so the story is not exactly as I told it. The installer didn't finish running (giving the error above) and nothing was installed (so no We fix it by creating these files by hand, downloading the binaries from the website in the installer, and adding |
On Tue, Jan 12, 2016 at 09:52:42AM -0800, Ivan Gonzalez wrote:
That sounds like “the installer crashed before accomplishing anything |
I would think if this was a 32-bit vs. 64-bit issue we'd have run into it by now, but I could be wrong. My looking around on this suggested it might just be an edge case with a system that has some configuration issue somewhere. If someone can test on another 32-bit system and confirm one way or the other that would be helpful. |
I'm having the same problem also working on a 32 bit system but had no problem with 64 utilizing the same software |
Just to be sure, do we support a 32-bit version of the installer? |
Possibly but not an easy to use one like swcarpentryinstaller.exe. However, you can use sqlite via the firefox addon without installing sqlite first. |
The installer doesn't seem to add either nano nor make to the GitBash shell's prompt nor to the Windows system path. Files get installed into ~/.swc/[bin|lib|share] and I can set the path manually and things appear to work. Should ~/.swc/lib/nano and ~/.swc/lib/make/bin get added to the WIndows PATH, or a .profile or .bash_profile get created in the user's home directory? |
On Tue, Apr 26, 2016 at 01:19:44PM -0700, justbennet wrote: Yes 1. If you have ~/.swc but no changes to ~/.bash_profile, I |
Yes, it does seem to crash. Running from a command window that doesn't close gives me this C:\Program Files (x86)\swc-installer>swc-windows-installer.exe |
On Tue, Apr 26, 2016 at 01:49:09PM -0700, justbennet wrote:
“
File "swc-windows-installer.py", line 202, in install_sqlite
File "swc-windows-installer.py", line 141, in zip_install
File "swc-windows-installer.py", line 72, in download
…
urllib2.URLError: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:590)>
”
Is the COMODO CA used by sqlite.org not in your CA list or something?
|
I had no issues when I manually went to the URL from the source code using Firefox on the same Windows VM. |
On Tue, Apr 26, 2016 at 02:14:47PM -0700, justbennet wrote: I think Firefox uses its own certificate store, while Python is using $ python3
or similar? Or you can poke around in the CA and ROOT system stores |
I will try that tomorrow or the next day. |
Yes, Comodo was not present. After a couple of consultations with Google, I found and installed the certificates to the system store. This is good to know. How likely is this issue to crop up? With @wking's guidance, I got through it, but I would probably not have done the morning of a workshop. I am only testing this because we are offering people a chance to come get help with installing the software prior to a workshop tomorrow, and I am not a native Windows speaker. |
This avoids issues with the user's certificate store [1] by skipping SSL. That means that middlemen will know you're asking for the shell zip, but they'd probably be able to guess something similar from the size of the response payload anyway. All of our other fetches are already over HTTP, and we don't have to worry about verifying the server because we have cryptographically-strong hashes for verifying the file they sent us. [1]: #41 (comment)
This avoids issues with the user's certificate store [1] by skipping TLS. That means that middlemen will know you're asking for the shell zip, but they'd probably be able to guess something similar from the size of the response payload anyway. All of our other fetches are already over HTTP, and we don't have to worry about verifying the server because we have cryptographically-strong hashes for verifying the file they sent us. [1]: #41 (comment)
On Thu, Apr 28, 2016 at 02:17:49PM -0700, justbennet wrote:
Fix floated in #48. |
I have the same issue trying to install on an old Windows 7 Enterprise. The installer doesn't finish, so I get sqlite not found. This is a win 64-bit machine. |
I'm in a workshop with a machine that has Windows 7 Home Edition Service Pack 1 32-bit machine. The installer installs nano and the rest of tools but neither SQLite nor make.
The text was updated successfully, but these errors were encountered: