個人的には下記のような内容を期待。
- PEP-8 に沿ったコーディングスタイル をするための .emacs 設定
- python.el と python-mode.el の違いと特徴
## Ignore Visual Studio temporary files, build results, and | |
## files generated by popular Visual Studio add-ons. | |
# User-specific files | |
*.suo | |
*.user | |
*.sln.docstates | |
# Build results |
C:\Users\tkondou\Downloads>python distribute_setup.py | |
Downloading http://pypi.python.org/packages/source/d/distribute/distribute-0.6.2 | |
8.tar.gz | |
Extracting in c:\tmp\tmp8xdb58 | |
Now working in c:\tmp\tmp8xdb58\distribute-0.6.28 | |
Installing Distribute | |
Traceback (most recent call last): | |
File "setup.py", line 41, in <module> | |
exec(open(init_path).read(), d) | |
File "<string>", line 8, in <module> |
C:\Users\tkondou\Downloads>python ez_setup.py | |
Downloading http://pypi.python.org/packages/2.7/s/setuptools/setuptools-0.6c11-p | |
y2.7.egg | |
Traceback (most recent call last): | |
File "ez_setup.py", line 278, in <module> | |
main(sys.argv[1:]) | |
File "ez_setup.py", line 212, in main | |
from setuptools.command.easy_install import main | |
File "C:\Users\tkondou\Downloads\setuptools-0.6c11-py2.7.egg\setuptools\__init | |
__.py", line 2, in <module> |
C:\Users\tkondou\Downloads>pip | |
Usage: pip COMMAND [OPTIONS] | |
You must give a command (use "pip help" to see a list of commands) | |
C:\Users\tkondou\Downloads>pip install ipython | |
Exception: | |
Traceback (most recent call last): | |
File "C:\Python27-x64\lib\site-packages\pip\basecommand.py", line 107, in main | |
status = self.run(options, args) |
Microsoft Windows [Version 6.1.7601] | |
Copyright (c) 2009 Microsoft Corporation. All rights reserved. | |
C:\Users\tkondou>python | |
Python 2.7.3 (default, Apr 10 2012, 23:24:47) [MSC v.1500 64 bit (AMD64)] on win | |
32 | |
Type "help", "copyright", "credits" or "license" for more information. | |
>>> from distutils.command.install_scripts import install_scripts | |
Traceback (most recent call last): | |
File "<stdin>", line 1, in <module> |
sys.path += ['.'] | |
extensions += ['sphinxcontrib_roles'] | |
# configuration case.1: define roles as list (define only roles) | |
roles = ['strike', red] | |
# configuration case.2: define roles as dict (define roles and its style on HTML) | |
roles = {'strike': "text-decoration: line-through;", | |
'red': "color: red;" } |
個人的には下記のような内容を期待。
$ make html | |
sphinx-build -b html -d _build/doctrees . _build/html | |
Running Sphinx v1.1.3 | |
loading translations [ja]... done | |
loading pickled environment... not yet created | |
Theme error: | |
no theme named 'bizstyle' found (missing theme.conf?) | |
make: *** [html] Error 1 |