mnemo_cards/mnemo_cards_backend/prepare_python.sh
2025-11-16 14:25:27 +03:00

20 lines
No EOL
435 B
Bash
Executable file

# 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