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 mytoninstaller/scripts/jsonrpcinstaller.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ ENDC='\033[0m'

# Установка компонентов python3
echo -e "${COLOR}[1/4]${ENDC} Installing required packages"
pip3 install Werkzeug json-rpc cloudscraper pyotp
pip3 install Werkzeug json-rpc cloudscraper pyotp jsonpickle # todo: set versions

# Клонирование репозиториев с github.com
echo -e "${COLOR}[2/4]${ENDC} Cloning github repository"
Expand Down
2 changes: 1 addition & 1 deletion mytoninstaller/scripts/ton_http_api_installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ COLOR='\033[92m'
ENDC='\033[0m'

# install python3 packages
pip3 install virtualenv
pip3 install virtualenv==20.27.1

# prepare the virtual environment
echo -e "${COLOR}[1/4]${ENDC} Preparing the virtual environment"
Expand Down
11 changes: 5 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
crc16
requests
psutil
fastcrc
jsonpickle
pynacl
crc16==0.1.1
requests==2.32.3
psutil==6.1.0
fastcrc==0.3.2
pynacl==1.5.0
2 changes: 1 addition & 1 deletion scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ done
if [ "${mode}" = "" ]; then # no mode
echo "Running cli installer"
wget https://raw.githubusercontent.com/${author}/${repo}/${branch}/scripts/install.py
pip3 install inquirer
pip3 install inquirer==3.4.0
python3 install.py
exit
fi
Expand Down
2 changes: 1 addition & 1 deletion scripts/ton_installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ else
fi

# Установка компонентов python3
pip3 install psutil crc16 requests
pip3 install psutil==6.1.0 crc16==0.1.1 requests==2.32.3

# build openssl 3.0
echo -e "${COLOR}[2/6]${ENDC} Building OpenSSL 3.0"
Expand Down