Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion runpod/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


# --------------------------- runpod.toml Defaults --------------------------- #
BASE_DOCKER_IMAGE = 'runpod/base:0.4.0-cuda{cuda_version}'
BASE_DOCKER_IMAGE = 'runpod/base:0.4.3-cuda{cuda_version}'
GPU_TYPES = [
"NVIDIA RTX A4000", "NVIDIA RTX A4500", "NVIDIA RTX A5000",
"NVIDIA GeForce RTX 3090", "NVIDIA RTX A6000"
Expand Down
4 changes: 2 additions & 2 deletions runpod/cli/groups/project/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def start_project(): # pylint: disable=too-many-locals, too-many-branches
venv_path = os.path.join(project_path_uuid_dev, "venv")
print(f'Activating Python virtual environment: {venv_path} on pod {project_pod_id}')
commands = [
f'python{config["runtime"]["python_version"]} -m venv {venv_path}',
f'python{config["runtime"]["python_version"]} -m virtualenv {venv_path}',
f'source {venv_path}/bin/activate &&'
f'cd {remote_project_path} &&'
'python -m pip install --upgrade pip &&'
Expand Down Expand Up @@ -266,7 +266,7 @@ def start_project(): # pylint: disable=too-many-locals, too-many-branches

echo -e "- Started API server with PID: $last_pid" && echo ""
echo "Connect to the API server at:"
echo "> https://$RUNPOD_POD_ID-8080.proxy.runpod.net/docs" && echo ""
echo "> https://$RUNPOD_POD_ID-8080.proxy.runpod.net" && echo ""

while true; do
if changed_file=$(inotifywait -q -r -e modify,create,delete --exclude "$exclude_pattern" {remote_project_path} --format '%w%f'); then
Expand Down