Does anyone know how to solve this problem?
PS C:\Users\lukman\Desktop\token_multi_sender> python3 main.py
Traceback (most recent call last):
File "C:\Users\lukman\Desktop\token_multi_sender\main.py", line 6, in <module>
from token_multi_sender import TokenMultiSender
File "C:\Users\lukman\Desktop\token_multi_sender\token_multi_sender.py", line 6, in <module>
from web3 import Web3
ModuleNotFoundError: No module named 'web3'
this the beginning of my main.py
from typing import List
from dotenv import dotenv_values
from config import Config
from token_multi_sender import TokenMultiSender
and this is in my token_multi_sender.py
import json
import time
from typing import List, Dict, Callable
from web3 import Web3
from config import Config
from utils import load_json_from_file, WalletType
I am already including web3 but still have this