prefix and exec-prefix stand for the directories that Python is installed to, and where it finds its libraries at run-time. prefix および exec-prefix は、 Python がインストールされているディレクトリと、実行時にライブラリを探しにいく場所を表します。 - Python
and may contain values which start with the prefix ELF .
で始まる値を持つ。 - JM
prefix the character with `!'.
`!' を文字の前につけられる。 - JM
Its sango (prefix of a Buddhist temple) is Tsubosaka-san.
山号は壺阪山。 - Wikipedia日英京都関連文書対訳コーパス
The honorific mountain prefix is 'Tozan.'
山号は東山(とうざん)。 - Wikipedia日英京都関連文書対訳コーパス
Its honorific mountain prefix is Mt. Tahofuji.
山号は、多宝富士山。 - Wikipedia日英京都関連文書対訳コーパス
There is no requirement that --prefix or --exec-prefix actually point to an alternate Python installation; if the directories listed above do not already exist, they are created at installation time.Incidentally, the real reason the prefix scheme is important is simply that a standard Unix installation uses the prefix scheme, but with --prefix and --exec-prefix supplied by Python itself as sys. --prefix や --exec-prefix が実際に他のインストール済み Python の場所を指している必要はありません;上に挙げたディレクトリがまだ存在しなければ、インストール時に作成されます。 ちなみに、prefix スキームが重要な本当の理由は、単に標準の Unix インストールが prefix スキームを使っているからです。 - Python
the negative prefix a- or un-
否定の接頭辞a-またはun- - 日本語WordNet
Its honorific mountain prefix is Shibutanisan (Shirutanisan).
山号は渋谷(汁谷)山。 - Wikipedia日英京都関連文書対訳コーパス
Its sango (honorific mountain prefix) is Mt. Bukkarin.
山号は仏華林山。 - Wikipedia日英京都関連文書対訳コーパス
Sets the url prefix URL のプレフィックスを設定します。 - PEAR
If prefix is NULL (no prefix function is specified), and no comparison function is specified, a default lexical comparison routine is used.
prefixが NULL (prefix 関数が指定されていない) で、かつ比較関数が指定されていないと、デフォルトの辞書比較ルーチンが使われる。 - JM
Its sango (honorific mountain prefix) is Kainasan.
山号は戒那山(かいなさん)。 - Wikipedia日英京都関連文書対訳コーパス
prefix - The string that will be prepended to the temp name (defaults to tmp)
prefix - 一時ファイル名の先頭に付加する文字列(デフォルトは tmp)。 - PEAR
Forget all results of stat(path) for path starting with prefix. prefix で始まる path に対する stat(path) の結果をすべて忘却します。 - Python
Its honorific mountain prefix is Sagasan.
山号を嵯峨山と称する。 - Wikipedia日英京都関連文書対訳コーパス
Its honorific mountain prefix is Reigizan.
山号は霊亀山(れいぎざん)。 - Wikipedia日英京都関連文書対訳コーパス
Its honorific mountain prefix is Goisan.
山号を五位山と称する。 - Wikipedia日英京都関連文書対訳コーパス
If given and not None, prefix is used to provide a short prefix to the filename. prefix が与えられており、かつNone でない場合、ファイル名の先頭につけられる短い接頭辞になります。 - Python
Similarly, some Perl ports ignore PREFIX and install in the Perl tree.
また、Perl 関連の ports も同様に PREFIX を無視して Perl ツリーにインストールします。 - FreeBSD
The prefix= field tells cvsup where to put the files it receives.
prefix= フィールドは、 cvsupに受け取ったファイルをどこに置くかを伝えます。 - FreeBSD
Its honorific mountain prefix is 'Seikozan.'
山号を清香山と称する。 - Wikipedia日英京都関連文書対訳コーパス
Its honorific mountain prefix is 'Asahisan.'
山号を朝日山と称する。 - Wikipedia日英京都関連文書対訳コーパス
Most Linux distributions include Python as a standard part of the system, so prefix and exec-prefix are usuallyboth /usr on Linux. ほとんどの Linux ディストリビューションには、システムの標準インストール物として Python が入っているので、 Linux では普通、prefix や exec-prefix はどちらも /usr になります。 - Python
Its honorific mountain prefix is 'Hachiokasan.'
山号を蜂岡山と称する。 - Wikipedia日英京都関連文書対訳コーパス
Its honorific mountain prefix is 'Tokozan.'
山号を東光山と称する。 - Wikipedia日英京都関連文書対訳コーパス
Its honorific mountain prefix is Shobozan.
山号を正法山と称する。 - Wikipedia日英京都関連文書対訳コーパス
Its honorific mountain prefix is Mt. Kikko.
山号を亀甲山と称する。 - Wikipedia日英京都関連文書対訳コーパス
Its honorific mountain prefix is Mt. Fukugen.
山号を福源山と称する。 - Wikipedia日英京都関連文書対訳コーパス
Its honorific mountain prefix is 'Tonoosan.'
山号は塔尾山(とうのおさん)。 - Wikipedia日英京都関連文書対訳コーパス
The last nonempty command prefix seen.
最後の空でないコマンドプリフィックス。 - Python
This can be set at build time with the --prefix argument to the configure script. この値はビルド時にconfigureスクリプトの--prefix引数で指定する事ができます。 - Python
The main collection of Python library modules is installed in the directory prefix + '/lib/pythonversion' while the platform independent header files (all except pyconfig.h)are stored in prefix + '/include/pythonversion', where version is equal to version[:3]. Pythonライブラリの主要部分はprefix + '/lib/pythonversion'にインストールされ、プラットフォーム非依存なヘッダファイル(pyconfig.h以外)はprefix + '/include/pythonversion'に格納されます(但しversionはversion[:3])。 - Python
You can find out what your Python installation uses for prefix and exec-prefix by running Python in interactive mode and typing a few simple commands.Under Unix, just type python at the shell prompt. 自分の Python がどんな prefix やexec-prefix を使っているかは、Python を対話モードで起動して、単純なコマンドをいくつか入力すればわかります。 - Python
(This performs an installation using the ``prefix scheme,'' where the prefix is whatever your Python interpreter was installed with--/usr/local/python in this case.)If you maintain Python on Windows, you might want third-party modules to live in a subdirectory of prefix, rather than right in prefix itself. (この操作を行うと、 ``prefix スキーム'' を使ったインストールになり、 prefix は Python インタプリタがインストールされている場所-- この場合には /usr/local/python になります。 )Windows 用の Python を管理しているのなら、サードパーティ製モジュールを prefix そのものの下ではなく、 prefix の下にあるサブディレクトリに置きたいと考えるかもしれません。 - Python
Its honorific mountain prefix is Ryuhozan.
山号を龍宝山と称する。 - Wikipedia日英京都関連文書対訳コーパス
The honorific mountain prefix is Koin-zan.
山号を洪隠山と称する。 - Wikipedia日英京都関連文書対訳コーパス
Its honorific mountain prefix is Mt. Nanei.
山号を南叡山と称する。 - Wikipedia日英京都関連文書対訳コーパス
Its honorific mountain prefix is Mt. Reisho.
山号は鈴聲山(れいしょうざん)。 - Wikipedia日英京都関連文書対訳コーパス
Its sango (honorific mountain prefix) is Jodosan.
山号は浄土山(じょうどさん)。 - Wikipedia日英京都関連文書対訳コーパス
prefix and sys.exec_prefix; empty heads are skipped. 空の前部は省略されます。 - Python
Note: For Oracle databases, omit the trip prefix 注: Oracle データベースの場合、trip 接頭辞 - NetBeans
Its honorific mountain prefix is Kachozan.
山号は華頂山(かちょうざん)。 - Wikipedia日英京都関連文書対訳コーパス
Its sango (prefix of a Buddhist temple) is Ikoma-san.
山号は生駒山(いこまさん)。 - Wikipedia日英京都関連文書対訳コーパス
formation of a word by means of a prefix 接頭辞による単語の構成 - 日本語WordNet
Return the exec-prefix for installedplatform-dependent files.
プラットフォーム依存 のファイルがインストールされている場所であるexec-prefix を返します。 - Python
Copyright (c) 2001 Robert Kiesling. Copyright (c) 2002, 2003 David Merrill. The contents of this document are licensed under the GNU Free Documentation License. Copyright (C) 1999 JM Project All rights reserved.
Copyright 2001-2004 Python Software Foundation.All rights reserved. Copyright 2000 BeOpen.com.All rights reserved. Copyright 1995-2000 Corporation for National Research Initiatives.All rights reserved. Copyright 1991-1995 Stichting Mathematisch Centrum.All rights reserved.