-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
串接過程中遇到問題 #37
Comments
我也是遇到相同問題 SolverProblemError Because line-bot-sdk (2.4.2) depends on requests (2.28.2) Traceback (most recent call last): |
I met the same error. Traceback (most recent call last): Any solution now? Fixed, ask ChatGPT and got answer below: The error message you're seeing is indicating that the Python interpreter cannot find the 'dotenv' module. This generally means that the module is not installed in the Python environment you're using on repl.it. In order to fix this issue, you need to install the python-dotenv module. Here's how you can do this: Open your repl.it project. On the left side, there should be a "Packages" tab (it looks like a little box). Click on that tab. In the search bar that appears, type in "python-dotenv" and click on the search result that matches. Click on the "+" button to install the package. This will add "python-dotenv" to your repl.it environment, and you should be able to import it in your Python code without issue. If for some reason you can't use the package manager, you can create a requirements.txt file in the root of your project and add python-dotenv to it. Then repl.it will automatically install the package when it runs your project. |
Traceback (most recent call last):
File "main.py", line 1, in
from dotenv import load_dotenv
ModuleNotFoundError: No module named 'dotenv'
The text was updated successfully, but these errors were encountered: