Trying to install UCSF DOCK on Cygwin


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Trying to install UCSF DOCK on Cygwin
# 1  
Old 03-10-2010
Trying to install UCSF DOCK on Cygwin

I'm trying to install DOCK 6.3 on my computer. I'm using the latest version of both DOCK for the install and Cygwin.

Following the directions outlined here DOCK 6.3 User Manual

I type in the prompt ./configure Makefile and it creates a header file titled config.h

I then type in make dock and I get a "command not found message". This tells me that cygwin does not have the make package. I went to Index of /pub/gnu/make to download the package and extracted the files. The question is what do I do next to make Cygwin understand that the package is there? Any help would be appreciated.
# 2  
Old 03-10-2010
With Cygwin, you don't have to manually download & extract additional software. Use the setup.exe you've used to install Cygwin to install make, as that will pull in any possible dependencies too.
# 3  
Old 03-10-2010
I used setup to install the package and still the make command is not registered by Cygwin.
# 4  
Old 03-10-2010
This shouldn't be. Can you post the relevant parts of the error message when you run make?
# 5  
Old 03-10-2010
bash: make: command not found
# 6  
Old 03-10-2010
Check if make is where it's supposed to be:
Code:
ls -l /usr/bin/make

If it isn't, you might have installed it into the wrong directory. If it is, it should have execute permissions ('-rwxr-xr-x+'). If it does, try calling it with the full path by entering /usr/bin/make.
# 7  
Old 03-10-2010
I'm reinstalling Cygwin so we'll see what happens. This time it actually found the make package and is installing it accordingly.

---------- Post updated at 07:42 PM ---------- Previous update was at 02:55 AM ----------

Ok I think I'm almost there but I can't seem to finish the installation because it cannot find a parser. I downloaded the bison package using the setup utility and added the definition in the config file that the manual gives ( DOCK 6 FAQ )
After this I typed in ./configure and then make install but I still end up with this error:

make [2] : bison -y : Command not found


Nevermind the 'bison -y' should not be in quotes. Installation complete! Yay!

Last edited by newuser1; 03-10-2010 at 08:59 PM.. Reason: Update
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How to use UCSF DOCK on cygwin ?

I have installed DOCK 6.6 on Cygwin ( I'm not sure if it is installed completely, I did as the DOCK 6.6 manual said ) and I am trying to do one of its wiki tutorials. in one of the steps, when I want to use "sphgen" for generating spheres, it says: bash: sphgen: command not found I think sphgen... (2 Replies)
Discussion started by: fmn
2 Replies

2. Windows & DOS: Issues & Discussions

Interrupted Cygwin install changed permissions on C drive

I was installing cygwin on my Windows 7 desktop. I guess I picked a bad mirror site because the download speed was very slow and it wasn't able to give me all the packages I wanted. I closed the setup in too much haste. I think it was still downloading and not yet installing though. It said that... (1 Reply)
Discussion started by: ethoma7329
1 Replies

3. Shell Programming and Scripting

opening new instance of cygwin from withing cygwin

I'm using cygwin on win7, What I would like to do is something like this: cygstart cygwin tail -f /foo/test.log | perl -pe 's/error/\e I know I can start a new instance using either of these: mintty -e ... cygstart tail ... But neither of those open in ANSI mode, so I can't do... (0 Replies)
Discussion started by: Validatorian
0 Replies

4. UNIX for Dummies Questions & Answers

Cygwin/X install help

Hi All, Not sure if this is the right forum but hope someone has the answer. I installed Cygwin/X and usually use the 'startxwin.bat' to start xwin. However, I recently updated to Windows 7 and noticed that 'startxwin.bat' is not in the normal path (normally its in /usr/X11/bin). Anyone know... (1 Reply)
Discussion started by: ScKaSx
1 Replies

5. UNIX for Advanced & Expert Users

Install ksh93 for cygwin

Hi, Does anyone know where can I get ksh93 for installation on CYGWIN. Thanks? (1 Reply)
Discussion started by: devtakh
1 Replies

6. UNIX and Linux Applications

How to install IBM db2 database server in cygwin ??

Hi folks, I am looking for a clue to install db2 in cygwin.....kindly help.;) (0 Replies)
Discussion started by: frozensmilz
0 Replies

7. Shell Programming and Scripting

removing bashisms/install dash on cygwin?

I would like to write unix shell scripts which are strictly POSIX compliant, and do not use any specific functionality that ties them down to one particular shell. What is the best way to do this? Any script or program that can be run to determine strict POSIX compliance? Or should I make... (3 Replies)
Discussion started by: fabulous2
3 Replies

8. UNIX for Dummies Questions & Answers

How to install Cygwin on Windows XP SP2

Please can anyone help me with how to install cygwin on a windows Xp SP2 platform, I cant seem to get it to work? (1 Reply)
Discussion started by: jimoney
1 Replies

9. UNIX for Dummies Questions & Answers

CYGWIN/CPAN install of Expect.pm

I am attempting to install a Perl Expect module via the CPAN . CPAN goes through the process but nothing happens, sample perl scripts can not find the Expect Module. CPAN was configured via the Default process " Are you ready for manual configuration? " answered "no". CPAN install seemed to find... (1 Reply)
Discussion started by: white222
1 Replies
Login or Register to Ask a Question