How to navigate to a directory in C:\ with Cygwin?

I'm trying to install PyQt4 so I can mess around with it. The installation guide said I had to install Sip. The last step to installing Sip is to use the make install command. Windows doesn't have that, so I looked it up and everything I saw said to install Cygwin. So I did. But...sip is in C:Python31sip .

Can I run this from the Cygwin command? If so, how would I do that?

Or can I run this from the normal windows command prompt? If so, how would I go about that?


使用:

cd /cygdrive/c

I'll add something that helps me out a lot with cygwin. Whenever setting up a new system, I always do this

ln -s /cygdrive/c /c

This creates a symbolic link to /cygdrive/c with a new file called /c (in the home directory)

Then you can do this in your shell

cd /c/Foo
cd /c/

Very handy.


cd c:现在在cygwin中受支持

链接地址: http://www.djcxy.com/p/61788.html

上一篇: Opengl版本麻烦glew.h

下一篇: 如何使用Cygwin导航到C:\中的目录?