Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 30 for install (0.042 sec.)
Python 2 から Python 3 への移植 — Python 3.6.5 ドキュメント 7765
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... 確保してください。 ( coverage.py が推奨されます; pip install coverage ) Python 2 と 3 の違いを学びましょう。 Fu ... ってコードをアップデートしてください。 (たとえば pip install future ) Python 3 サポートに関してデグレを防ぐため ... に Pylint を使ってください。( pip install pylint ) caniusepython3 を使ってどの依存性があなた ... ython 3 の使用を妨げているかを検出できます。 ( pip install caniusepython3 ) 依存性があなたを邪魔しなくなってさ ...
https://man.plustar.jp/python/howto/pyporting.html - [similar]
1. コマンドラインと環境 — Python 3.6.5 ドキュメント 7765
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python のセットアッ ... ase directory を設定します。これは python setup.py install --user 時に user site-packages directory と Distut ... ils installation paths のパスを計算するのに使われます。 参考 P ... ONMALLOC ¶ Set the Python memory allocators and/or install debug hooks. Set the family of memory allocators u ... malloc() function for the PYMEM_DOMAIN_RAW domain. Install debug hooks: debug : install debug hooks on top of ...
https://man.plustar.jp/python/using/cmdline.html - [similar]
urllib パッケージを使ってインターネット上のリソースを取得するには — Python 3.6.... 7586
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » urll ... 般的ですがいくらか特定の状況に限られるものでしょう。 install_opener も (グローバルな) デフォルト opener オブジェ ... 得するのに直接呼び出すことができます: 利便性を除けば install_opener を使う必要はありません。 Basic 認証 ¶ ハンド ... he opener to fetch a URL opener . open ( a_url ) # Install the opener. # Now all calls to urllib.request.urlo ... pen use our opener. urllib . request . install_opener ( opener ) 注釈 上の例では build_opener に ...
https://man.plustar.jp/python/howto/urllib2.html - [similar]
5. ビルド済み配布物を作成する — Python 3.6.5 ドキュメント 7538
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... ょうどソース配布物をダウンロードして python setup.py install を実行したのと同じように、正しい場所に Distutils が ... なく、pure Python 配布物の場合なら、 python setup.py install するのに比べて大して簡単になったとは言えません---し ... 形式 (5) pkgtool Solaris pkgtool 形式 sdux HP-UX swinstall 形式 wininst Windows 用の自己展開形式 ZIP ファイル ... できます。) 5.3.1. インストール後実行スクリプト (postinstallation script) ¶ Python 2.3 からは、インストール実行 ...
https://man.plustar.jp/python/distutils/builtdist.html - [similar]
1. Distutilsの紹介 — Python 3.6.5 ドキュメント 7538
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... ィレクトリに展開されます。 If an end-user wishes to install your foo module, all she has to do is download foo ... from the foo-1.0 directory---run python setup . py install この操作を行うと、インストールされている Python で ... コマンドは、ほぼ完全に開発者だけが対象となる一方、 install はどちらかというとインストール作業者向けです (とは ... 形式、 Solaris pkgtool ( bdist_pkgtool ) 、 HP-UX swinstall ( bdist_sdux ) があります。例えば、以下のコマンドを ...
https://man.plustar.jp/python/distutils/introduction.html - [similar]
DTrace と SystemTap で CPython を測定する — Python 3.6.5 ドキュメント 7310
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » DTra ... 開発ツールのインストールは次のように行えます: $ yum install systemtap-sdt-devel もしくは: $ sudo apt-get insta ... lineno = $arg3; frameptr = $arg4 } If this file is installed in SystemTap's tapset directory (e.g. /usr/share ...
https://man.plustar.jp/python/howto/instrumentation.html - [similar]
21.6. urllib.request --- URL を開くための拡張可能なライブラリ — Python 3.6.5 ド... 7262
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... s trusted CA certificates for you. urllib.request. install_opener ( opener ) ¶ 指定された OpenerDirector のイ ... . request . build_opener ( auth_handler ) # ...and install it globally so it can be used with urlopen. urllib ... . request . install_opener ( opener ) urllib . request . urlopen ( 'ht ... er , proxy_auth_handler ) # This time, rather than install the OpenerDirector, we use it directly: opener . o ...
https://man.plustar.jp/python/library/urllib.request.html - [similar]
28.4. zipapp --- 実行可能な python zip 書庫を管理する — Python 3.6.5 ドキュメン... 7262
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... who only need to have a suitable version of Python installed on their system. The key to doing this is to bun ... in__.py file, and any supporting application code. Install all of your application's dependencies into the my ... app directory, using pip: $ python -m pip install -r requirements.txt --target myapp (this assumes y ... registers the .pyz and .pyzw file extensions when installed. 28.4.6.1. Making a Windows executable ¶ On Wind ...
https://man.plustar.jp/python/library/zipapp.html - [similar]
3. setup 設定ファイル (setup configuration file) を書く — Python 3.6.5 ドキュメ... 7148
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... Distutils コマンドのうちの一つ (例えば build_py , install ) で、 option はそのコマンドでサポートされているオ ... erated by the Distutils (such as the list of files installed). But some of it has to be supplied as options t ...
https://man.plustar.jp/python/distutils/configfile.html - [similar]
Python モジュールの配布 — Python 3.6.5 ドキュメント 7099
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... プロジェクトをインストールするためのガイドについては installation guide を参照してください。 注釈 あなたが企業や ... ら呼び出すことでインストール出来ます: python - m pip install setuptools wheel twine 注釈 POSIX ユーザ(Max OS X ...
https://man.plustar.jp/python/distributing/index.html - [similar]
PREV 1 2 3 NEXT