forked from voxmenthe/coding-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject_setup.sh
More file actions
23 lines (15 loc) · 724 Bytes
/
project_setup.sh
File metadata and controls
23 lines (15 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash
set -e # Exit immediately if a command exits with a non-zero status
# Upgrade pip and install poetry
pip install --upgrade pip
pip install poetry
# Update the lock file if necessary
poetry lock
# Install dependencies and the project
poetry install
# Create and install the IPython kernel for the project
# poetry run python -m python -m ipykernel install --user --name=crv3 --display-name "Clever Routing v3"
# poetry run python -m ipykernel install --sys-prefix --name=crv3 --display-name "Clever Routing v3"
python -m ipykernel install --user --name=coda --display-name "Coding Agent" # install globally outside of poetry
echo "Jupyter kernel 'coda' has been installed."
echo "Project setup complete!"