- Install Python 3.11+. Don't forget to check "Add Python to PATH".
- Install Poetry: instruction in russian.
- Install git. This will make it easy to get updates to the script with the
git pull
command - Open the console in a convenient location...
- Clone (or download) this repository:
git clone https://github.com/alenkimov/tweepy-manager
- Go to the project folder:
cd tweepy-manager
- Install the required dependencies and create the database using alembic with the following command or by running the
INSTALL.bat
file:poetry install poetry run alembic upgrade head
- Start the script with the following command or by running the
START.bat
:poetry run python main.py
- Clone (or download) this repository:
- Update your system:
sudo apt update && sudo apt upgrade -y
- Install git and screen:
sudo apt install screen git -y
- Install Python 3.11+:
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt install python3.12 python3.12-dev -y
ln -s /usr/bin/python3.12/usr/bin/python
- Install Poetry:
curl -sSL https://install.python-poetry.org | python -
export PATH="/root/.local/bin:$PATH"
- Clone this repository and go to the folder:
git clone https://github.com/alenkimov/tweepy-manager
cd tweepy-manager
- Install the required dependencies and create the database using alembic:
poetry install
poetry run alembic upgrade head
- Run the script:
poetry run python main.py