Linux Mint に python3.3.0 をインストールしようとしています。README ファイルを読んだ後、次のコマンドを実行しました。
./configure
make
make test
sudo make install
コマンドを実行しましたmake test
が、必要なモジュールが見つからないといういくつかのテストがスキップされ、次のエラーが発生しました。
FAIL: test_urlwithfrag (test.test_urllib2net.OtherNetworkTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/home/Python-3.3.0/Lib/test/test_urllib2net.py", line 165, in test_urlwithfrag
"http://docs.python.org/glossary.html#glossary")
AssertionError: 'http://docs.python.org/2/glossary.html' != 'http://docs.python.org/glossary.html#glossary'
- http://docs.python.org/2/glossary.html
? --
+ http://docs.python.org/glossary.html#glossary
?
+++++++++
Ran 15 tests in 58.905s
FAILED (failures=1, skipped=1)
test test_urllib2net failed
make: *** [test] Error 1
私のシステムでPythonを動作させるために何をする必要があるか教えてください