You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add support for uv and pip installation methods as alternatives to
Conda/Docker. Update pyproject.toml with proper project metadata and
structured development dependencies.
Copy file name to clipboardExpand all lines: README.md
+59Lines changed: 59 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -127,3 +127,62 @@ You can now use the Jupyter in the Docker container to run the python-tutorial.
127
127
> [!NOTE]
128
128
>
129
129
> If you want to restart the container, you can simply run the command `docker container start python_tutorial`.
130
+
131
+
## Setup a local dev environment
132
+
133
+
If you prefer not to use Conda and/or Docker, you can set up a *lightweight* development environment using either "uv" (a faster alternative to pip) or traditional "pip". Both methods will install the development dependencies specified in the `pyproject.toml` file.
134
+
135
+
### Using `uv` (Recommended for speed)
136
+
137
+
[uv](https://github.com/astral-sh/uv) is a fast, Python package installer and resolver written in Rust.
138
+
139
+
1. Install uv via `pip` or any other method:
140
+
```console
141
+
pip install uv
142
+
```
143
+
144
+
2. Create a virtual environment and install dev dependencies:
0 commit comments