Skip to content

Instantly share code, notes, and snippets.

@jaceklaskowski
Created February 19, 2023 09:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jaceklaskowski/a2caea887719a47edf4562ad0f7e49a8 to your computer and use it in GitHub Desktop.
Save jaceklaskowski/a2caea887719a47edf4562ad0f7e49a8 to your computer and use it in GitHub Desktop.
What `python -m pip install -e .` does

What python -m pip install -e . does

While installing dask-distributed, you can see the following output:

$ python -m pip install -e .
Obtaining file:///Users/jacek/dev/oss/dask/distributed
  Preparing metadata (setup.py) ... done
Requirement already satisfied: ...
...
Installing collected packages: ...
...
Successfully installed dask-2022.12.1 distributed

Review the steps and find out why dask-2022.12.1 is installed (not 2023.2.0).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment