- ベストアンサー
phytonモジュールの別の場所へのインストール
- phytonのバージョンが2.2であり、2.4以上のバージョンのソフトを使用する必要があるため、別の場所にphytonモジュールをインストールしようとしているが、エラーが発生している。
- 現在使用しているレンタルサーバーには、Python1.5とPython2.2がインストールされているが、必要な2.4以上のバージョンは存在しない。
- インストールについての手順を参考にし、phyton 2.5.1の圧縮ファイルをダウンロードして展開し、python setup.py install --home=~ を実行したが、ImportErrorが発生してインストールできなかった。
- みんなの回答 (3)
- 専門家の回答
質問者が選んだベストアンサー
make だけではコンパイルをして実行ファイルを作るだけで、 指定のディレクトリへのコピーなどはしません。 OSごとに色々と注意点があってここでは書ききれませんので、 Pythonのソースを展開したディレクトリにある README というファイルを読んでください。
その他の回答 (2)
- sakusaker7
- ベストアンサー率62% (800/1280)
ソースを展開したディレクトリに、configure という シェルスクリプトがあります。必要な情報を引数で与えてこれを実行すれば 適切に設定された Makefileを作ってくれますので、 それをつかって make すればよいです。 configure に --help という引数を与えて起動すると、 与えることのできるオプション一覧が出てきますので 質問者さんの環境に合わせて設定してください。 `configure' configures python 2.5 to adapt to many kinds of systems. Usage: configure [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print `checking...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for `--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or `..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [/usr/local] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, `make install' will install all the files in `/usr/local/bin', `/usr/local/lib' etc. You can specify an installation prefix other than `/usr/local' using `--prefix', for instance `--prefix=$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --datadir=DIR read-only architecture-independent data [PREFIX/share] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --infodir=DIR info documentation [PREFIX/info] --mandir=DIR man documentation [PREFIX/man] Optional Features: --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-universalsdk[SDKDIR] Build agains Mac OS X 10.4u SDK (ppc/i386) --enable-framework[=INSTALLDIR] Build (MacOSX|Darwin) framework --enable-shared disable/enable building shared python library --enable-profiling enable C-level code profiling --enable-toolbox-glue disable/enable MacOSX glue code for extensions --enable-ipv6 Enable ipv6 (with ipv4) support --disable-ipv6 Disable ipv6 support --enable-unicode[=ucs[24]] Enable Unicode strings (default is yes) Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --without-gcc never use gcc --with-cxx-main=<compiler> compile main() and link python executable with C++ compiler --with-suffix=.exe set executable suffix --with-pydebug build with Py_DEBUG defined --with-libs='lib1 ...' link against additional libs --with-system-ffi build _ctypes module using an installed ffi library --with-signal-module disable/enable signal module --with-dec-threads use DEC Alpha/OSF1 thread-safe libraries --with(out)-threads[=DIRECTORY] disable/enable thread support --with(out)-thread[=DIRECTORY] deprecated; use --with(out)-threads --with-pth use GNU pth threading libraries --with(out)-doc-strings disable/enable documentation strings --with(out)-tsc enable/disable timestamp counter profile --with(out)-pymalloc disable/enable specialized mallocs --with-wctype-functions use wctype.h functions --with-fpectl enable SIGFPE catching --with-libm=STRING math library --with-libc=STRING C library Some influential environment variables: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a nonstandard directory <lib dir> CPPFLAGS C/C++ preprocessor flags, e.g. -I<include dir> if you have headers in a nonstandard directory <include dir> CPP C preprocessor Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to <http://www.python.org/python-bugs>. たとえばインストール位置を決めるのは Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [/usr/local] このオプションです(ブラケットの中にあるのはデフォルトの指定)。 自分が hoge というユーザーだったとして /usr/home/hoge/python にインストールしたいのなら ./configure --prefix=/usr/home/hoge/python です。
お礼
ご返事をいただきありがとうございます。 インストールしたいところが、/usr/home/hoge/python だったら ./configure --prefix=/usr/home/hoge/python を行い そのあと make をすると、/usr/home/hoge/python にインストールされると言う理解でいいのでしょうか? このほかにもし何かすることがあったら教えていただきたいとのですが。 しつこくてゴメンナサイ。
- sakusaker7
- ベストアンサー率62% (800/1280)
> ImportError : No module named optparse optparse の添付は 2.3からですから、2.2には入ってません。 というかこれはモジュールのインストールの手順ですが、 > phyton 2.5.1 compressed source tarbal を Python本体をインストールしたいのですか? なら configure での指定だと思いますが。
お礼
ご返事ありがとうございます。 基本的なことが分かっていないので変なことをしているみたいです。 レンタルサーバーに、バージョンアップしてくれるか確認をしたところ、共有のサーバーなのでダメとの返事でしたので、Python 本体を個別に割り当てられたユーザー領域にインストールして、使いたいと思っています。 configure での指定とは、どのように行うのでしょうか?
お礼
いろいろと教えていただきありがとうございます。 READMEを読んで見てやってみます。 うまくできないようでしたら、また助言をしていただけると助かります。 ありがとうございました。