mnemo_cards/mnemo_cards_backend/prepare_python.sh

20 lines
435 B
Bash
Raw Normal View History

2025-11-16 11:25:27 +00:00
# install python3 and pip3
#sudo apt update
#sudo apt upgrade
#sudo apt install python3
#sudo apt install python3-pip
# install virtualenv
pip3 install virtualenv
# install and create a virtual environment in your target folder
rm -rf python_folder
mkdir python_folder
cd python_folder
python3 -m virtualenv .
# now activate your venv and install pycryptodome
#./bin/activate
bin/pip3 install pycryptodome
#python ../rustore_jwt.py