Skip to content

Commit 5ea4512

Browse files
Minor setup copy improvements
1 parent 38121e9 commit 5ea4512

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ Run through the following steps to create a Python virtual environment before do
3838
1. Select _Python: Create Environment_.
3939
1. Select _Venv_ as we want a local virtual environment.
4040
1. Select the desired, installed Python version.
41-
1. Check _requirements.txt_ to install the Python dependencies we need for this repo, then press _OK_. The install may take a few minutes. You can check on progress in the _OUTPUT_ window.
41+
1. Check _requirements.txt_ to install the Python dependencies we need for this repo, then press _OK_. The install may take a few minutes. You can check on progress in the _OUTPUT_ window (select `Python`).
4242
1. Verify the virtual environment is set up. You should see a new _.venv_ directory with a _pyveng.cfg_ file and the Python version you selected earlier.
43-
1. Setup project environment: Run `python setup/setup_python_path.py --generate-env` to configure the Python path.
43+
1. Set up the project environment by running `python setup/setup_python_path.py --generate-env` to configure the Python path.
4444
a. If for some reason the `python` command is not found, please try adding your virtual environment's `bin` or `Scripts` directory to your system's PATH variable. An example command to do this for a virtual environment named `venv` would be to run `source .venv/bin/activate`
4545

4646
The first time you run a Jupyter notebook, you'll be asked to install the Jupyter kernel package (ipykernel).

setup/setup_python_path.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ def generate_env_file() -> None:
107107
print(f"Generated .env file : {env_file_path}")
108108
print(f"PROJECT_ROOT : {project_root}")
109109
print(f"PYTHONPATH : {shared_python_path}\n")
110+
print("All done!\n")
110111

111112

112113
# Script entry point - handles command-line arguments

0 commit comments

Comments
 (0)