File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed
Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -35,16 +35,14 @@ if (Test-Path "venv/bin/activate") {
3535} elseif (Test-Path " venv/Scripts/activate" ) {
3636 # Activate the virtual environment for Windows style
3737 . " venv/Scripts/activate"
38- elseif (Test-Path " .venv/Scripts/activate" ) {
39- # Activate the virtual environment for Windows style
40- . " .venv/bin/activate"
41- }
42- elseif (Test-Path " .venv/Scripts/activate" ) {
43- # Activate the virtual environment for Windows style
38+ } elseif (Test-Path " .venv/Scripts/activate" ) {
39+ # Activate the virtual environment for Windows style (if in .venv)
4440 . " .venv/Scripts/activate"
4541} else {
4642 Write-Host " Cannot locate activate script from venv directory!" - ForegroundColor Red
4743 Exit 1
4844}
45+
46+ # Install the project in editable mode
4947python - m pip install - e .
5048
You can’t perform that action at this time.
0 commit comments