2021-01-02から1日間の記事一覧

例文002(基礎英文解釈の技術100)

In the development of civilization the use of tools grew and multiplied. Later the use of stream power revolutionized the whole industrial organization and transportation. In the development of civilization the use of tools grew and multip…

例文001(基礎英文解釈の技術100)

Words are not the only means of communication. Gestures also communicate. Some gestures are used in more than one culture. Others differ from culture to culture. Words are not the only means of communication. S:言葉 V:ではない C:唯一の方法…

Jupyter Notebookのインストール (Anaconda)

環境の作成 作成 conda create -n [環境名] python=[バージョン] 切替 conda activate -n [環境名] Jupyterのインストール conda install -c anaconda jupyter Jupypter Notebookの起動 起動 # コマンド末尾の"&"は、バックグラウンドで実行させるため jupyt…

バックグラウンド (Linux)

実行中プロセルの一時停止 [Ctrl] + Z ジョブの一覧 jobs バックグランドで再開 # bg [ジョブ番号] bg 1 バックグラウンドで実行 # [コマンド] & jupyter notebook &

仮想環境の作成 (Anaconda)

Conda環境の開始・終了 Conda環境の開始 conda activate ・確認:プロンプトに"(base)"が表示 Conda環境の終了 conda deactivate ・確認:プロンプトの"(base)"が消える 環境の一覧 conda infoのヘルプ conda info -h 環境の一覧 conda info -e 環境の作成 …

リストのスタイル

ul { padding: 0; position: relative; } ul li { color: #2d8fdd; border-left: solid 6px #2d8fdd; background: #f1f8ff; margin-bottom: 3px; line-height: 1.5; padding: 0.5em; list-style-type: none; } item01 item02 item03 item04 【参考】 saruwak…