Skip to content

Commit 49bd37e

Browse files
committed
Fix ja/install.md
1 parent a1116f7 commit 49bd37e

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

content/ja/install.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ SciPyの推奨されるインストール方法は、あなたの好みのワー
1919
\[静的型スタブ]を使用してSciPyをインストールするには、
2020
[型スタブを使用したインストール](#type-stubs)をご覧ください。
2121

22-
[static type stubs]: [https://typing.readthedocs.io/en/latest/guides/libraries.html]\(https://typing.readthedocs.io/en/latest/guides/libraries.html\)
22+
[static type stubs]: [https://typing.readthedocs.io/en/latest/guides/libraries.html](https://typing.readthedocs.io/en/latest/guides/libraries.html)
2323

2424
{{< admonition tip >}}
2525
統合開発環境 (IDE) が正確な型ヒントを提供するためには、型スタブのインストールが必要となる場合があります。
@@ -35,7 +35,7 @@ content = ''' <a name="project-based"></a>
3535

3636
Pythonパッケージマネージャーであるuvを使用してSciPyを使用するためのプロジェクトをセットアップする手順は以下の通りです。
3737

38-
1. [uvドキュメントのインストール手順]([https://docs.astral.sh/uv/getting-started/installation/)に従って](https://www.google.com/search?q=https://docs.astral.sh/uv/getting-started/installation/)%E3%81%AB%E5%BE%93%E3%81%A3%E3%81%A6)\`uv\`をインストールします。
38+
1. [uvドキュメントのインストール手順](https://docs.astral.sh/uv/getting-started/installation/)に従って、\`uv\`をインストールします。
3939

4040
2. 新しいサブディレクトリに新しいプロジェクトを作成します。ターミナルで以下を実行します。
4141

@@ -91,7 +91,7 @@ Pythonスクリプトを実行するには、`uv run myscript.py`を使用でき
9191

9292
詳細は[uvのプロジェクトでの作業ガイド][uv-projects]をご覧ください。
9393

94-
[uv-projects]: [https://docs.astral.sh/uv/guides/projects/]\(https://docs.astral.sh/uv/guides/projects/\)
94+
[uv-projects]: [https://docs.astral.sh/uv/guides/projects/](https://docs.astral.sh/uv/guides/projects/)
9595

9696
{{< /admonition >}}
9797

@@ -102,16 +102,16 @@ Condaはあらゆる言語のパッケージを管理できるため、Python自
102102
Condaは任意の言語でパッケージを管理できるため、
103103
Python自体や、コンパイラ、その他の言語をインストールするのにも使用できます。
104104

105-
[Conda]: [https://docs.conda.io/projects/conda/en/latest/index.html]\(https://docs.conda.io/projects/conda/en/latest/index.html\)
105+
[Conda]: [https://docs.conda.io/projects/conda/en/latest/index.html](https://docs.conda.io/projects/conda/en/latest/index.html)
106106

107107
パッケージ管理ツール[`pixi`]を使用して[conda-forge]からSciPyをインストールする手順は、`uv`の手順と非常によく似ています。
108108

109-
[conda-forge]: [https://conda-forge.org/]\(https://conda-forge.org/\)
110-
[`pixi`]: [https://pixi.sh/latest/]\(https://pixi.sh/latest/\)
109+
[conda-forge]: [https://conda-forge.org/](https://conda-forge.org/)
110+
[`pixi`]: [https://pixi.sh/latest/](https://pixi.sh/latest/)
111111

112112
1. [`pixi`ドキュメントのインストール手順][install-pixi]に従って、`pixi`をインストールします。
113113

114-
[install-pixi]: [https://pixi.sh/latest/]\(https://pixi.sh/latest/\)
114+
[install-pixi]: [https://pixi.sh/latest/](https://pixi.sh/latest/)
115115

116116
2. 新しいサブディレクトリに新しいプロジェクトを作成します。
117117

@@ -150,12 +150,12 @@ content = ''' <a name="environment-based"></a>
150150

151151
<!-- prettier-ignore-start -->
152152

153-
1. [Pythonをインストール](\[https://www.python.org/downloads/)します]([https://www.google.com/search?q=https://www.python.org/downloads/)%E3%81%97%E3%81%BE%E3%81%99](https://www.google.com/search?q=https://www.python.org/downloads/)%E3%81%97%E3%81%BE%E3%81%99))
153+
1. [Pythonをインストール](https://www.python.org/downloads/)します。
154154

155155
2. `venv` を使用して仮想環境を作成し、アクティブ化します。
156156

157157
{{< admonition hint >}}
158-
[Python Packaging User Guideのチュートリアル](\[https://packaging.python.org/en/latest/tutorials/installing-packages/#creating-virtual-environments)をご覧ください]([https://www.google.com/search?q=https://packaging.python.org/en/latest/tutorials/installing-packages/%23creating-virtual-environments)%E3%82%92%E3%81%94%E8%A6%A7%E3%81%8F%E3%81%A0%E3%81%95%E3%81%84](https://www.google.com/search?q=https://packaging.python.org/en/latest/tutorials/installing-packages/%23creating-virtual-environments)%E3%82%92%E3%81%94%E8%A6%A7%E3%81%8F%E3%81%A0%E3%81%95%E3%81%84))
158+
[Python Packaging User Guideのチュートリアル](https://packaging.python.org/en/latest/tutorials/installing-packages/#creating-virtual-environments)をご覧ください。
159159
{{< /admonition >}}
160160

161161
3. [`pip`] を使用して SciPy をインストールします。
@@ -166,7 +166,7 @@ python -m pip install scipy
166166

167167
<!-- prettier-ignore-end -->
168168

169-
[`pip`]: [https://pip.pypa.io/en/stable/getting-started/]\(https://pip.pypa.io/en/stable/getting-started/\)
169+
[`pip`]: [https://pip.pypa.io/en/stable/getting-started/](https://pip.pypa.io/en/stable/getting-started/)
170170

171171
### `conda` を使用したインストール
172172

@@ -179,8 +179,8 @@ conda install scipy # または
179179
mamba install scipy
180180
```
181181

182-
[Miniforge]: [https://conda-forge.org/download/]\(https://conda-forge.org/download/\)
183-
[`mamba`]: [https://mamba.readthedocs.io/en/latest/]\(https://mamba.readthedocs.io/en/latest/\)
182+
[Miniforge]: [https://conda-forge.org/download/](https://conda-forge.org/download/)
183+
[`mamba`]: [https://mamba.readthedocs.io/en/latest/](https://mamba.readthedocs.io/en/latest/)
184184

185185
'''
186186

0 commit comments

Comments
 (0)