2

I'm starting to become less and less of a Windows guy and might try Linux. Is difficult working with windows to do web development with the terminal.

I have two questions

  1. How can I cd desktop on the Cygwin terminal I see people do this with ease but I keep getting -bash: cd desktop no such file directory I'm guessing it has some thing to do with the fact that Cygwin is set up as the home directory.
  2. I want to download https://www.djangoproject.com/download/1.4.2/tarball/ using wget so I did

wget https://www.djangoproject.com/download/1.4.2/tarball/

and I get an error back saying

ERROR: the certificate of 'django' is not trusted.

ERROR: the certificate of 'django' hasn't got a known issuer.

4

1 に答える 1

0

最初の質問:

現在のディレクトリを確認しpwd、そこから移動します。

2 番目の質問:

--no-check-certificatewget コマンドに追加します

wget -Odjango.tar.gz --no-check-certificate https://www.djangoproject.com/download/1.4.2/tarball/
于 2012-11-18T02:03:58.423 に答える