JythonはPython for Javaです。これはあなたが望むものですか?私はWindows用の「普通の」Pythonのためにこれに答えてきました。
WindowsでPythonを使用するには、Windowsバイナリインストーラをインストールする必要があります。このバイナリインストーラはthe Python download pageからダウンロードできます。バイナリインストーラを選択してください。
setuptools
をインストールする必要があります。python package index (pypi)から入手できます。
両方をインストールすると、WindowsでPythonを使用できるようになります。 、そして、
Python 2.7.1 (r271:86832, Nov 27 2010, 18:30:46) [MSC v.1500 32 bit (Intel)] on
win32
Type "help", "copyright", "credits" or "license" for more information.
>>>
PyWhoisをインストールするには、コマンドプロンプトと種類を開きます:あなたは、コマンドプロンプトを開き、Pythonのプロンプトを取得するには、「パイソン」と入力し、それは次のようになりますすることができるはずです
C:\>easy_install pywhois
あなたは、このような出力が表示されます:
Searching for pywhois
Reading http://pypi.python.org/simple/pywhois/
Best match: pywhois 0.1
Downloading http://pypi.python.org/packages/source/p/pywhois/pywhois-0.1.tar.gz#
md5=b888dcd990574b7b284d9a9f4b300776
Processing pywhois-0.1.tar.gz
Running pywhois-0.1\setup.py -q bdist_egg --dist-dir c:\docume~1\40843\locals~1\
temp\easy_install-hugnul\pywhois-0.1\egg-dist-tmp-aarhii
Adding pywhois 0.1 to easy-install.pth file
Installing pywhois-script.py script to C:\Python27\Scripts
Installing pywhois.exe script to C:\Python27\Scripts
Installing pywhois.exe.manifest script to C:\Python27\Scripts
Installed c:\python27\lib\site-packages\pywhois-0.1-py2.7.egg
Processing dependencies for pywhois
Finished processing dependencies for pywhois
は、それがインストールされていることを確認するために、あなたは、Pythonからそれをインポートすることができるはずです。
詳細については、Netbeans 7.0でPythonのサポートが削除されました(http://wiki.netbeans.org/Python70Roadmap参照)。
このhttp://wiki.python.org/moin/IntegratedDevelopmentEnvironments wikiエントリには、他にもいくつかのIDEがあります。
easy_installをPython 3.2にインストールする方法は知っていますか? Pythonサイトで見つかったインストーラコードでは動作していないようです。 – MarathonStudios
私はPython 2.7に戻ってみることを検討してきました。これをお勧めしますか、新しいバージョンを回避する価値がありますか? – MarathonStudios
簡単インストール(setuptoolsの一部)が3.0に移植されています。 3.0を使用する必要がある場合は、[distribute](http://code.activestate.com/pypm/distribute/)を使用します。私が個人的に使っているライブラリのほとんどは3.0に移植されていないので、2.7.2を使っています。 –