Lubuntu 14.10에서 Python libs를 설치하면 오류가 발생합니다.

Lubuntu 14.10에서 Python libs를 설치하면 오류가 발생합니다.

안녕하세요. 업무용(대학) 노트북에 Python 패키지를 설치해야 합니다. 그들이 우리에게 준 명령은 다음
sudo apt-get install python3 python3-pip python3-pyqt4 python3-tk과 같습니다
pip3 install --upgrade pyflakes pylint pygments pep8 numpy scipy matplotlib psutil sphinx rope-py3k
. 하지만 scipy와 matplotlib를 설치하는 데 문제가 있습니다. 다음과 같은 오류가 발생합니다.

Cleaning up...
Removing temporary dir /tmp/pip_build_chris...
Command /usr/bin/python3 -c "import setuptools, tokenize;__file__='/tmp/pip_build_chris/scipy/setup.py'  
exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" 
install --record /tmp/pip-te6a9qkh-record/install-record.txt 
--single-version-externally-managed --compile failed with error code 1 in /tmp/pip_build_chris/scipy 
Exception information:
Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/pip/basecommand.py", line 122, in main status = self.run(options, args)
  File "/usr/lib/python3/dist-packages/pip/commands/install.py", line 283, in run requirement_set.install(install_options,  
  global_options, root=options.root_path)
  File "/usr/lib/python3/dist-packages/pip/req.py", line 1435, in install requirement.install(install_options, global_options, *args, 
 **kwargs)
 File "/usr/lib/python3/dist-packages/pip/req.py", line 706, in install cwd=self.source_dir, filter_stdout=self._filter_install,  
 show_stdout=False)
 File "/usr/lib/python3/dist-packages/pip/util.py", line 697, in call_subprocess% (command_desc, proc.returncode, cwd))
 pip.exceptions.InstallationError: Command /usr/bin/python3 -c "import setuptools, tokenize;__file__='/tmp/pip_build_chris
 /scipy /setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install 
 --record /tmp/pip-te6a9qkh-record/install-record.txt --single-version-externally-managed --compile failed with error code 1 in 
 /tmp/pip_build_chris/scipy   

그리고:

 Cleaning up...
 Removing temporary dir /tmp/pip_build_chris...
 Command python setup.py egg_info failed with error code 1 in /tmp/pip_build_chris/matplotlib
 Exception information:
 Traceback (most recent call last):
 File "/usr/lib/python3/dist-packages/pip/basecommand.py", line 122, in mainstatus = self.run(options, args)
 File "/usr/lib/python3/dist-packages/pip/commands/install.py", line 278, in runrequirement_set.prepare_files(finder, 
 force_root_egg_info=self.bundle, bundle=self.bundle)
 File "/usr/lib/python3/dist-packages/pip/req.py", line 1229, in prepare_filesreq_to_install.run_egg_info()
 File "/usr/lib/python3/dist-packages/pip/req.py", line 325, in run_egg_infocommand_desc='python setup.py egg_info')
 File "/usr/lib/python3/dist-packages/pip/util.py", line 697, in call_subprocess% (command_desc, proc.returncode, cwd))
 pip.exceptions.InstallationError: Command python setup.py egg_info failed with error code 1 in /tmp/pip_build_chris 
 /matplotlib

여기서 도움을 받을 수 있는 기회가 있나요?

관련 정보