0
When I try to use the remote ./configure in windows cmd to install freetds I get the message
'.' is not recognised as an internal command or external, a operable program or a batch file.
0
When I try to use the remote ./configure in windows cmd to install freetds I get the message
'.' is not recognised as an internal command or external, a operable program or a batch file.
Browser other questions tagged python windows cmd
You are not signed in. Login or sign up in order to post.
What is the purpose of this
./configure
, since./configure
is not a standard linux command so finding an equivalent in windows without having an accurate specification of what you want to do is impossible.– Augusto Vasques
Freetds installation: $ . /configure --help $ . /configure $ make $ make install
– Raysssa
What’s freetds for in windows??? There’s a windows version of Freetds https://sourceforge.net/projects/freetdswindows/ but I think it would be inappropriate.
– Augusto Vasques
I already downloaded but how do I install? I need Freetds to use python ctds library
– Raysssa
This zip contains all the binaries of Freetds(*.exe, *.sys and *.dll). These are the same files that you would obtain using Cmake as shown here https://www.freetds.org/userguide/osissues.htm, or by downloading the components individually from this https://ci.appveyor.com/project/FreeTDS/freetds/history . Unzip the contents in a folder. There will be two sub-folders, each one has its own folder
bin
, edit path environment variable by adding paths to these two folders– Augusto Vasques
But when I bass and try to run Pip install ctds error: LINK : fatal error LNK1181: cannot open input file 'sybdb.lib'
– Raysssa
Sorry the link I passed is incomplete, try this one: https://ci.appveyor.com/api/buildjobs/5tx4vwl7vkfdkxn8/artifacts/vs2017_64-master.zip . If you look at
vs2017_64-master\bin
will be there thesysdb.dll
and in\vs2017_64-master\lib
you will findsysdb.lib
– Augusto Vasques
This version is complete but has now given the following error: build lib.Win32-3.8_tds.cp38-Win32.pyd : fatal error LNK1120: 58 unresolved externals error: command 'C: Program Files (x86) Microsoft Visual Studio 14.0 VC BIN link.exe' failed with Exit status 1120
– Raysssa