Don't create .env for VS Code

This commit is contained in:
James Murdza
2025-10-19 21:10:16 -07:00
parent c718ccb393
commit 4a00635e17

View File

@@ -160,10 +160,6 @@ install_package "libs/python/mcp-server" "mcp-server"
print_step "Installing development dependencies with UV..."
uv pip install -e ".[dev,test,docs]"
# Create a .env file for VS Code to use the virtual environment
print_step "Creating .env file for VS Code..."
echo "PYTHONPATH=${PROJECT_ROOT}/libs/python/core:${PROJECT_ROOT}/libs/python/computer:${PROJECT_ROOT}/libs/python/agent:${PROJECT_ROOT}/libs/python/som:${PROJECT_ROOT}/libs/python/pylume:${PROJECT_ROOT}/libs/python/computer-server:${PROJECT_ROOT}/libs/python/mcp-server" > .env
print_success "All packages installed successfully with UV!"
print_step "Your virtual environment is ready. To activate it:"
echo " source .venv/bin/activate"