mirror of
https://github.com/exo-explore/exo.git
synced 2025-10-23 02:57:14 +03:00
- Use #!/usr/bin/env bash instead of #!/bin/bash for better portability
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# Get the total memory in MB
|
# Get the total memory in MB
|
||||||
TOTAL_MEM_MB=$(($(sysctl -n hw.memsize) / 1024 / 1024))
|
TOTAL_MEM_MB=$(($(sysctl -n hw.memsize) / 1024 / 1024))
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
if command -v python3.12 &>/dev/null; then
|
if command -v python3.12 &>/dev/null; then
|
||||||
echo "Python 3.12 is installed, proceeding with python3.12..."
|
echo "Python 3.12 is installed, proceeding with python3.12..."
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
source ./install.sh
|
source ./install.sh
|
||||||
pushd exo/networking/grpc
|
pushd exo/networking/grpc
|
||||||
python3 -m grpc_tools.protoc -I. --python_out=. --grpc_python_out=. node_service.proto
|
python3 -m grpc_tools.protoc -I. --python_out=. --grpc_python_out=. node_service.proto
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
echo "Starting node 1"
|
echo "Starting node 1"
|
||||||
DEBUG_DISCOVERY=7 DEBUG=7 python3 main.py --node-id "node1" --listen-port 5678 --broadcast-port 5679 --chatgpt-api-port 52415 --chatgpt-api-response-timeout 900 > output1.log 2>&1 &
|
DEBUG_DISCOVERY=7 DEBUG=7 python3 main.py --node-id "node1" --listen-port 5678 --broadcast-port 5679 --chatgpt-api-port 52415 --chatgpt-api-response-timeout 900 > output1.log 2>&1 &
|
||||||
|
|||||||
Reference in New Issue
Block a user