[PR #8] Add virtual environment setup and activation scripts #8

Open
opened 2026-02-15 16:29:23 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/deep_research_from_scratch/pull/8
Author: @Print-Dawit
Created: 10/5/2025
Status: 🔄 Open

Base: mainHead: main


📝 Commits (1)

  • d58d42c Add virtual environment setup and activation scripts

📊 Changes

100 files changed (+0 additions, -0 deletions)

View changed files

.venv/Include/site/python3.12/greenlet/greenlet.h (+164 -0)
.venv/Lib/site-packages/IPython/__init__.py (+144 -0)
.venv/Lib/site-packages/IPython/__main__.py (+14 -0)
.venv/Lib/site-packages/IPython/core/__init__.py (+0 -0)
.venv/Lib/site-packages/IPython/core/alias.py (+268 -0)
.venv/Lib/site-packages/IPython/core/application.py (+492 -0)
.venv/Lib/site-packages/IPython/core/async_helpers.py (+155 -0)
.venv/Lib/site-packages/IPython/core/autocall.py (+70 -0)
.venv/Lib/site-packages/IPython/core/builtin_trap.py (+93 -0)
.venv/Lib/site-packages/IPython/core/compilerop.py (+192 -0)
.venv/Lib/site-packages/IPython/core/completer.py (+3672 -0)
.venv/Lib/site-packages/IPython/core/completerlib.py (+382 -0)
.venv/Lib/site-packages/IPython/core/crashhandler.py (+244 -0)
.venv/Lib/site-packages/IPython/core/debugger.py (+1250 -0)
.venv/Lib/site-packages/IPython/core/debugger_backport.py (+206 -0)
.venv/Lib/site-packages/IPython/core/display.py (+1266 -0)
.venv/Lib/site-packages/IPython/core/display_functions.py (+371 -0)
.venv/Lib/site-packages/IPython/core/display_trap.py (+74 -0)
.venv/Lib/site-packages/IPython/core/displayhook.py (+346 -0)
.venv/Lib/site-packages/IPython/core/displaypub.py (+183 -0)

...and 80 more files

📄 Description

  • Created activate and deactivate scripts for the virtual environment in the .venv/Scripts directory.
  • Added Windows batch scripts for activating and deactivating the virtual environment.
  • Included pip and Python executables for the virtual environment.
  • Configured pyvenv.cfg with the appropriate Python executable and version information.

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langchain-ai/deep_research_from_scratch/pull/8 **Author:** [@Print-Dawit](https://github.com/Print-Dawit) **Created:** 10/5/2025 **Status:** 🔄 Open **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (1) - [`d58d42c`](https://github.com/langchain-ai/deep_research_from_scratch/commit/d58d42ceda023baf14b20838c8fa6d225fa70c6e) Add virtual environment setup and activation scripts ### 📊 Changes **100 files changed** (+0 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `.venv/Include/site/python3.12/greenlet/greenlet.h` (+164 -0) ➕ `.venv/Lib/site-packages/IPython/__init__.py` (+144 -0) ➕ `.venv/Lib/site-packages/IPython/__main__.py` (+14 -0) ➕ `.venv/Lib/site-packages/IPython/core/__init__.py` (+0 -0) ➕ `.venv/Lib/site-packages/IPython/core/alias.py` (+268 -0) ➕ `.venv/Lib/site-packages/IPython/core/application.py` (+492 -0) ➕ `.venv/Lib/site-packages/IPython/core/async_helpers.py` (+155 -0) ➕ `.venv/Lib/site-packages/IPython/core/autocall.py` (+70 -0) ➕ `.venv/Lib/site-packages/IPython/core/builtin_trap.py` (+93 -0) ➕ `.venv/Lib/site-packages/IPython/core/compilerop.py` (+192 -0) ➕ `.venv/Lib/site-packages/IPython/core/completer.py` (+3672 -0) ➕ `.venv/Lib/site-packages/IPython/core/completerlib.py` (+382 -0) ➕ `.venv/Lib/site-packages/IPython/core/crashhandler.py` (+244 -0) ➕ `.venv/Lib/site-packages/IPython/core/debugger.py` (+1250 -0) ➕ `.venv/Lib/site-packages/IPython/core/debugger_backport.py` (+206 -0) ➕ `.venv/Lib/site-packages/IPython/core/display.py` (+1266 -0) ➕ `.venv/Lib/site-packages/IPython/core/display_functions.py` (+371 -0) ➕ `.venv/Lib/site-packages/IPython/core/display_trap.py` (+74 -0) ➕ `.venv/Lib/site-packages/IPython/core/displayhook.py` (+346 -0) ➕ `.venv/Lib/site-packages/IPython/core/displaypub.py` (+183 -0) _...and 80 more files_ </details> ### 📄 Description - Created activate and deactivate scripts for the virtual environment in the .venv/Scripts directory. - Added Windows batch scripts for activating and deactivating the virtual environment. - Included pip and Python executables for the virtual environment. - Configured pyvenv.cfg with the appropriate Python executable and version information. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-15 16:29:23 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/deep_research_from_scratch#8