Skip to content

Commit 2f3de7f

Browse files
committed
fix venv path
1 parent f034509 commit 2f3de7f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

document/02-local-env.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ $ python3 -m venv .venv 
3737

3838
# Activate virtual environment
3939
$ source .venv/bin/activate # for Mac or Unix user
40-
$ ./venv/Scripts/activate # for Windows user
40+
$ .venv/Scripts/activate # for Windows user
4141

4242
# Install required library
4343
$ pip install --upgrade pip setuptools wheel

document/02-local-env.ja.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ $ python3 -m venv .venv
3939

4040
# 仮想環境をアクティベートする
4141
$ source .venv/bin/activate # Unix / Macの場合
42-
$ ./venv/Scripts/activate # windowsの場合
42+
$ .venv/Scripts/activate # windowsの場合
4343

4444
# 今回使うPythonのパスを確認する。
4545
$ which python

0 commit comments

Comments
 (0)